从键盘输入两个时间点(24小时制),输出两个时间点之间的时间间隔,时间间隔用“...
题目描述从键盘输入两个时间点(24小时制),输出两个时间点之间的时间间隔,时间间隔用“小时:分钟:秒”表示。如:3点5分25秒应表示为--03:05:25.假设两个时间在同一天内,时间先后顺序与输入无关。
输入描述
输入包括两行。
第一行为时间点1。
第二行为时间点2。
输出描述
以“小时:分钟:秒”的格式输出时间间隔。格式参看输入输出。
样例
输入 复制
12:01:12
13:09:43
输出 复制
01:08:31
代码如下:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int h1,m1,s1,h2,m2,s2;
intt1=0,t2=0,t=0;
int a,b,c;
scanf("%d:%d:%d",h1,m1,s1);
scanf("%d:%d:%d",h2,m2,s2);
t1=h1*3600+m1*60+s1;
t2=h2*3600+m2*60+s2;
if(t1>t2)
t=t1-t2;
if(t2>t1)
t=t2-t1;
a=t/3600;
b=t/60%60;
c=t%60;
printf("%02d:%02d:%02d",a,b,c);
}
请问我这个代码哪里错了啊 你的代码有一处错误,就是输入部分的scanf函数的用法不正确。scanf函数的第一个参数是格式控制字符串,后面的参数应该是变量的地址。所以,在读取输入时,你需要使用取地址符号&。以下是修正后的代码:
#include <iostream>
using namespace std;
int main()
{
int h1, m1, s1, h2, m2, s2;
int t1 = 0, t2 = 0, t = 0;
int a, b, c;
scanf("%d:%d:%d", &h1, &m1, &s1);// 修正这里的scanf函数用法
scanf("%d:%d:%d", &h2, &m2, &s2);
t1 = h1 * 3600 + m1 * 60 + s1;
t2 = h2 * 3600 + m2 * 60 + s2;
if (t1 > t2)
t = t1 - t2;
if (t2 > t1)
t = t2 - t1;
a = t / 3600;
b = t / 60 % 60;
c = t % 60;
printf("%02d:%02d:%02d", a, b, c);
return 0;
}
希望对你有帮助!
以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。 你的代码基本上没有问题,只是在调用scanf函数时,需要为int类型的变量提供地址,因此你应该使用 & 符号来取得变量的地址。修改后的代码如下所示:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int h1,m1,s1,h2,m2,s2;
intt1=0,t2=0,t=0;
int a,b,c;
scanf("%d:%d:%d",&h1,&m1,&s1);
scanf("%d:%d:%d",&h2,&m2,&s2);
t1=h1*3600+m1*60+s1;
t2=h2*3600+m2*60+s2;
if(t1>t2)
t=t1-t2;
else
t=t2-t1;
a=t/3600;
b=t%3600/60;
c=t%60;
printf("%02d:%02d:%02d",a,b,c);
return 0;
}
注意,C++ 中 ,`scanf` 访问地址用 `&` , `else` 表示其他情况,取分钟需要 `%3600` 。
求最佳答案{:10_254:}
页:
[1]