#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