字母奔跑
#include <stdio.h> #include <stdlib.h> #include <windows.h> int main () { int a,b; a = 0; while (a<=400) { system ("cls"); b = 1; while (b<=a) { printf(" "); ++b; } printf("H"); Sleep(100); ++a; } system("pause"); return 0; }
========================================Talk is cheap, show me the code=======================================
CSDN博客地址:https://blog.csdn.net/qq_34115899