Devc++ 与VC中的清屏函数#include<stdio.h> #include<stdlib.h>//清屏函数的头文 int main() { int i; for(i=0;i<1000;i++) { printf("hahha"); system("cls") ;//清屏函数 } }