#include <iostream>
using namespace std;
int main()
{
int a,b,c,d;
int a1,b1,c1,d1;
cout<<"输入的时间最好为两位数:\n"<<endl;
cin>>a>>b>>c;
cin>>a1>>b1>>c1;
if(a>=0&&a<24&&b>=0&&b<60&&c>=0&&c<60)
{d=(23-a)*3600+(59-b)*60+(60-c);
cout<<"距离0时0分0秒还有:"<<d<<"秒"<<endl;
}
else
cout<<"你好瓜哦连时间都不知道吗?"<<endl;
if(a1>=0&&a1<24&&b1>=0&&b1<60&&c1>=0&&c1<60)
{d1=(23-a1)*3600+(59-b1)*60+(60-c1);
cout<<"距离0时0分0秒还有:"<<d1<<"秒"<<endl;
}
else
cout<<"你好瓜哦连时间都不知道吗?"<<endl;
int e;
if (d>d1)
e=d-d1;
else
e=d1-d;
cout<<e<<endl;
}
以上是第一题,纯个人意见,多指正。