commit
1bc5140de9
@ -0,0 +1,22 @@
|
||||
#include<stdio.h>
|
||||
#include<string.h>
|
||||
#include<stdlib.h>
|
||||
#include<windows.h>
|
||||
int main(void)
|
||||
{
|
||||
int num[20][20]={1},b=0;char c;
|
||||
while(1)
|
||||
{
|
||||
b++;
|
||||
for(int o=0;o<200;o++)
|
||||
{
|
||||
if(o==b)
|
||||
printf("*");
|
||||
else
|
||||
printf(" ");
|
||||
}
|
||||
Sleep(100);
|
||||
system("cls");
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in new issue