gougouwang
 1 #include <stdio.h>
 2 #include <windows.h>
 3 int main()
 4 {
 5 int a=0,b=1;
 6 system("color 79");
 7 while(a<=1000)
 8 {
 9 b=0;
10 system("cls");
11 while(b<=a)
12 {
13 printf(" ");
14 b=b+1;
15 }
16 Sleep(100);
17 printf("OK");
18 a=a+1;
19 }
20 return 0;
21 }

 

分类:

技术点:

相关文章:

  • 2021-12-18
  • 2022-01-15
  • 2022-01-10
  • 2021-07-23
  • 2021-11-04
  • 2021-07-28
  • 2022-03-04
  • 2021-05-10
猜你喜欢
  • 2022-12-23
  • 2022-01-04
  • 2022-12-23
  • 2022-12-23
  • 2021-05-23
  • 2022-02-17
相关资源
相似解决方案