美文网首页
c++ primer plus 第六版 第三章习题

c++ primer plus 第六版 第三章习题

作者: i_Eloise | 来源:发表于2018-01-17 20:50 被阅读0次

    第四题:

    #include <iostream>

    using namespace std;

    int main()

    {

    long time;

    cout << "Enter the number of seconds: ";

    cin >> time;

    long seconds = time % 60;

    long minutes = time/60;

    long hours = minutes/60;

    minutes = minutes%60;

    long days = hours/24;

    hours = hours%24;

    cout << time << " seconds = "

    << days << " days, "

    << hours << " hours, "

    << minutes << " minutes, "

    << seconds << " seconds "

    << endl;

    return 0;

    }

    相关文章

      网友评论

          本文标题:c++ primer plus 第六版 第三章习题

          本文链接:https://www.haomeiwen.com/subject/qexpoxtx.html