其他分享
首页 > 其他分享> > 【无标题】黄色一秒疯狂跑指针

【无标题】黄色一秒疯狂跑指针

作者:互联网

#include<stdio.h>
#include<windows.h>
int main()
{
    int a,b;
    a=0;
    while(a<=1000)
    {
        system("cls");
        b=0;
        while(b<=a)
        {
            printf(" ");
            b++;
        }
        printf("H");
        Sleep(1);
        a++;
    }
        return 0;
}

 

标签:int,无标题,一秒,++,while,printf,include,指针
来源: https://blog.csdn.net/m0_61521538/article/details/121478199