问答详情
源自:1-5 良好习惯之规范

这个怎么编写啊?


输入时间算出,这个时间是在这天的第几秒    程序写简单  谢谢


提问者:此生最美的风景 2015-04-15 21:19

个回答

  • willz
    2015-04-15 22:23:31

    #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;

    }