C ++程序将时间从12小时转换为24小时格式
这是一个C++程序,用于将时间从12小时转换为24小时格式。
算法
Begin
In main(),
If median = pm
Check if entered hours is less than 12
Then add 12 to hours and print the time in 24 hours format.
Check if entered hours is equal to 12
Then print “00” as hours and print the time in 24 hours format.
Else If median=am
Check if entered hours is less than 12
Then print the time in 24 hours format.
Check if entered hours is equal to 12
Then print “12” as hours and print the time in 24 hours format.
Else print wrong choice.
End示例
#include<iostream>
#include<string.h>
#include <iomanip>
using namespace std;
int main() {
int hours,minutes,seconds,h1,m1,s1;
char median[10];
cout<<"Enter hours, minutes, seconds:";
cin>>hours;
cin>>minutes;
cin>>seconds;
cout<<"输入中位数:";
cin>>median;
cout<<"时间以12小时格式:"<<setfill('0') << setw(2) <<hours<<":"<<setfill('0') << setw(2)
<<minutes<<":"<<setfill('0') << setw(2) <<seconds<<median<<endl; //setw()=sets the field width,
//setfill()=将字符设置为流填充字符。
if(strcmp(median,"pm")==0) { //compare the strings "0" is for true "1" is for false.
if (hours<12) {
h1=hours+12;
m1=minutes;
s1=seconds;
cout<<"24小时制的时间:" <<h1<<":"<<setfill('0') << setw(2) <<m1<<":"<<setfill('0') << setw(2) <<s1<<median;
} else if(hours=12) {
h1=12;
m1=minutes;
s1=seconds;
cout<<"24小时制的时间:"<<h1<<":"<<setfill('0') << setw(2) <<m1<<":"<<setfill('0') << setw(2) <<s1<<median;
}
} else if(strcmp(median,"am")==0) {
if (hours<12) {
h1=hours;
m1=minutes;
s1=seconds;
cout<<"24小时制的时间:"<<setfill('0') << setw(2) <<h1<<":"<<setfill('0') << setw(2) <<m1<<":"<<setfill('0') << setw(2) <<s1<<median;
} else if(hours=12) {
m1=minutes;
s1=seconds;
cout<<"24小时制的时间:"<<"00"<<":"<<setfill('0') << setw(2) <<m1<<":"<<setfill('0') << setw(2) <<s1<<median;
}
} else {
printf("Wrong choice");
}
}输出结果
Enter hours, minutes, seconds:12 07 06 输入中位数:pm 时间以12小时格式:12:07:06pm 24小时制的时间:12:07:06pm Enter hours, minutes, seconds:01 02 30 输入中位数:pm 时间以12小时格式:01:02:30pm 24小时制的时间:13:2:30pm Enter hours, minutes, seconds:10 10 03 输入中位数:am 时间以12小时格式:10:10:03am 24小时制的时间:10:10:03am Enter hours, minutes, seconds:12 02 04 输入中位数:am 时间以12小时格式:12:02:04am 24小时制的时间:00:02:04am
热门推荐
10 小红书平安祝福语简短
11 生日祝福语大全女孩简短
12 收生日红包祝福语 简短
13 领证幽默祝福语简短
14 法考面试祝福语简短
15 老哥出门祝福语简短语
16 送灯祝福语简短独特
17 幼儿狗年祝福语大全简短
18 好听的元旦简短祝福语