1 #include<stdio.h>
2 #include<time.h>
3 #include<stdlib.h>
4 #include<windows.h>
5 int main()
6 {
7 srand((unsigned)time(NULL));
8 int b=rand()%10;
9 printf("%d\n",b);
10 Sleep(30);
11 system("pause");
12 system("cls");
13 char f[4][500];
14 int i,j,k,s,t;
15 for(i=0;i<=2;i++)
16 scanf("%s",f[i]);
17 for(i=0;i<=2;i++)
18 {
19 printf("%s\n",f[i]);
20 Sleep(20);
21 system("pause");
22 system("cls");
23 }
24 printf("我是狂盗一枝梅!!!!\n");
25 Sleep(20);
26 system("pause");
27 system("cls");
28 return 0;
29 }