#include #include #include #include int main() { char *string[]={" ", "\t 界面问题 ", "\t 纵向输出 ", "\t @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @", "\t◎◎◎◎◎◎◎◎◎◎◎◎◎◎◎◎◎", "\t♂♂♂♂♂♂♂♂♂♂♂♂♂♂♂♂♂", "\t♀♀♀♀♀♀♀♀♀♀♀♀♀♀♀♀♀" }; for(int i=7;i>0;i--) //7=行数(下同) { system("cls"); //清屏 for(int j=i;j<7;j++) //j=i cout<<string[j]<<endl; Sleep(5); //延迟输出 } getch(); Sleep(50); return 0; }