Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <Windows.h>
- using namespace std;
- void main()
- {
- // Пример С++ - Вывод с 0,5сек задержки
- for(int n=0; n < 20; n++)
- { cout << "0"; Sleep(500); }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement