能控制输出速度
比如输出 abcdefg 1秒弹出一个 或是N秒
#include <stdio.h> #include <dos.h>
int main () { printf("a"); sleep(1); printf("b"); sleep(1); printf("c"); sleep(1); printf("d"); sleep(1); }
--------------------Configuration: dos - Win32 Debug-------------------- Compiling... dos.cpp E:\cpp\dos.cpp(7) : error C2065: 'sleep' : undeclared identifier E:\cpp\dos.cpp(14) : warning C4508: 'main' : function should return a value; 'void' return type assumed 执行 cl.exe 时出错.
dos.exe - 1 error(s), 0 warning(s)
靠,那么有100个字符你不是要用100个printf??
int main () { char *s="1234567890",*a; a=s; while(*a) { printf("%c",*a++); sleep(1); } printf("\n"); a=s; while(*a) { printf("\b%c",*a++); sleep(1); }
}
while是什么意思啊 char是什么意思啊%c是什么意思啊 我平时都用%f
我知道我很菜啊 太基础的资料我找不到 请你多耗费点细胞 告诉我一下吧