C语言如何清空屏幕

2025-01-20 07:21:41
推荐回答(3个)
回答1:

1、main的方法代码获取指定的字符串

2、把字符串循环出并清除的代码

3、把字符循环出删除方法代码

4、找到这个字符串的结尾 并记录字符串长度方法代码

5、从右开始读取 并检测是否为特定字符,不是则放入临时的内存,找到后删除并退出的方法代码,这样就可以清除屏幕了

回答2:

  调用system函数,通过它来执行cls清屏命令。

   #include 
  #include
  int main()
  {
  printf("现在你看到这条信息,按回车,即会清屏\n");
  system("cls");
  return 0;
  }

回答3:

自己写一个gotoxy实现吧,VC本身好像不能部分清屏

试试这个:
#include
using namespace std;
#include
#include
void gotoxy(int x,int y)
{
HANDLE hConsole=GetStdHandle(STD_OUTPUT_HANDLE);
COORD coordScreen={x,y};
SetConsoleCursorPosition(hConsole,coordScreen);
}
void main()
{
cout<<"1234567890"<cout<<"1234567890"<cout<<"1234567890"<cout<<"1234567890"<cout<<"1234567890"<cout<<"1234567890"<gotoxy(0,2);
cout<<"**********"<
getch();
}

不过如果不考虑描画performance的话,一般采用的是画面重构的方法来实现部分描画更新的。
否则除非能采用嵌入式的分区上电,或者CGRAM缓冲,很难实现部分描画更新