此生最美的风景
2015-04-15 21:19
输入时间算出,这个时间是在这天的第几秒 程序写简单 谢谢
#include <iostream>
#include <string>
using namespace std;
int main()
{
string Time;//格式为23:00:00
cin>>Time;
int hour;
int mins;
int secs;
hour = atoi(Time.substr(0,2).c_str());
mins = atoi(Time.substr(4,5).c_str());
secs = atoi(Time.substr(7,8).c_str());
cout<<hour*3600 + mins * 60 + secs ;
system("pause");
return 0;
}
C语言入门
926023 学习 · 20793 问题
相似问题