C++ 时分秒的无限循环打印


#include <iostream>
#include <string>
#include <windows.h>
using namespace std;
int main() {
    int count = 0;
    for (int i=0;i < 24; i++){
        for (int j = 0; i < 60; j++) {
            for (int k = 0; k < 60; k++) {
                count++;
                cout << i << ":" << j << ":" << k << " 第" << count << "次想念你" << endl;
                Sleep(1000);
            }
        }
    }
    system("pause");
    return 0;
}

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/280549.html

(0)
上一篇 2022年8月14日
下一篇 2022年8月14日

相关推荐

发表回复

登录后才能评论