-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathC++ricardo.cpp
More file actions
34 lines (29 loc) · 910 Bytes
/
C++ricardo.cpp
File metadata and controls
34 lines (29 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include<iostream>
#include<windows.h>
using namespace std;
int main (){
SetConsoleOutputCP(65001);
system("cls"); Sleep(3000);
cout<<"\tWelcome to ricardo game\n"; Sleep(1000);
cout<<"Ricardo là dota\n"; Sleep(1000);
cout<<"get ready\n"; Sleep(2000); //khởi động
int j = 10;
for (int j = 10; j >= 0 ; j--){ //đếm 10 ->0
system("cls");
cout<<"\tWelcome to ricardo game\n"; //3 lệnh này để in giữ nguyên
cout<<"Ricardo là dota\n";
cout<<"get ready\n";
cout << j; Sleep(1000); //biến đếm
}
Sleep(2000);
system("cls");
cout<<"\tWelcome to ricardo game\n"; //3 lệnh này để in giữ nguyên
cout<<"Ricardo là dota\n";
cout<<"get ready\n";
cout<<"0 is gay dota scam ez\n";
Sleep(4000);
while (TRUE){
cout<<"DOTA DOTA "; //in =))
}
return 0;
}