English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

可以寫出時間的程式嗎?
有人寫出來過嗎?
例如:現在是2006/05/21 01:10:59
就要cout出2006/05/21 01:10:59
秒針還要繼續跳喔!
請貼出來參考!

2006-05-20 21:22:02 · 1 個解答 · 發問者 明...zZ 2 in 電腦與網際網路 程式設計

1 個解答

#include
#include
#include
#include
#include
using namespace std;

int main()
{
time_t t;
struct tm *now;

cout.fill('0');
do
{
time(&t);
now = localtime( &t );
cout<<1900+now->tm_year<<"/"<tm_mon<<"/"<tm_mday<<" "<tm_hour<<":"<tm_min<<":"<tm_sec<<"\r";
Sleep(100);
}
while(!_kbhit());
cout.fill(' ');
return 0;
}

2006-05-21 12:12:01 · answer #1 · answered by chan 5 · 0 0

fedest.com, questions and answers