C language to implement the 24 hour system to the 12 hour system example

  • 2020-04-02 02:20:04
  • OfStack

There are three functions: input (time_input), output (time_output), and transformation (time_change)


#include<iostream>
#include<cstdlib>
using namespace std;
void time_input(int& hour,int& minute);
void time_output(int& hour,int& minte,char& noon);
void time_change(int& hour,int& minte,char& noon);
int main()
{
    int hour,minute;
    char p;
    char noon;
   do{
    time_input(hour,minute);
    time_change(hour,minute,noon);
    time_output(hour,minute,noon);
    cout<<"Enter 'r' to again. ";
    cin>>p;
   }while(p=='R'||p=='r');
 system("pause");//Some compilers may not be needed here
    return 0;
}
void time_input(int& hour,int& minute)
{
    cout<<"Enter hour:";
    cin>>hour;
    cout<<"Enter minte:";
    cin>>minute;
}
void time_output(int& hour,int& minute,char& noon)
{
    cout<<"12-hours: "
         <<hour
         <<":"
         <<minute
         <<" "
         <<noon
         <<endl;
}
void time_change(int& hour,int& minute,char& noon)
{
    if((hour>12&&hour<=24)&&(minute>=0&&minute<=60))
    {
    noon='P';
    hour-=12;
    }
    else if((hour>=0&&hour<12)&&(minute>=0&&minute<=60)) {noon='A';}
    else {cout<<"Time is error!n";}
}


Related articles: