比较难琢磨的题
怎么用C语言实现 打印输出效果啊能控制输出速度
比如输出 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)