분류 | 게시판 |
베스트 |
|
유머 |
|
이야기 |
|
이슈 |
|
생활 |
|
취미 |
|
학술 |
|
방송연예 |
|
방송프로그램 |
|
디지털 |
|
스포츠 |
|
야구팀 |
|
게임1 |
|
게임2 |
|
기타 |
|
운영 |
|
임시게시판 |
|
옵션 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #include <Windows.h> #include <ctime> #include <iostream> int timeSinceLastUpdate; int main() { while (!GetAsyncKeyState(VK_SPACE)) { if (clock() - timeSinceLastUpdate > 5000) { system("cls"); std::cout << "Test" << std::endl; std::cout << clock() << std::endl << std::endl; std::cout << "[SPACE] EXIT" << std::endl; timeSinceLastUpdate = clock(); } } } | cs |
죄송합니다. 댓글 작성은 회원만 가능합니다.