计时器 每个一秒输出一次

 
#include <iostream>
#include   <windows.h>
#include   <stdio.h>


using namespace std;

int main()
{
    while(1) {
        Sleep(1000);
        cout << "ddd" << endl;
    }
    return 0;
}

posted @ 2011-09-06 15:16  java简单例子  阅读(333)  评论(0编辑  收藏  举报