这个怎么编写啊?

来源:1-5 良好习惯之规范

此生最美的风景

2015-04-15 21:19


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


写回答 关注

1回答

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

    }



C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926023 学习 · 20793 问题

查看课程

相似问题