使用系统(CLS);头文件stdlib的简单示例。h #包括 stdio。h #包含 stdlib。h int main () {printf ("Hello World! "\ n”);系统(“暂停”);系统(CLS);系统(“暂停”);返回0;}。
创新互联建站坚持“要么做到,要么别承诺”的工作理念,服务领域包括:成都网站制作、网站建设、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的万载网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
clrscr函数是C语言的清除函数,它清除屏幕上的输出,clrscr是clear screen的缩写。Clrscr不是C语言的标准库函数,而是TC平台特有的函数,其他编译器无法使用。
扩展资料:
在C语言中,需要在代码的开头定义变量,在代码的开头不允许使用表达式。因此,不允许将调平函数放在它的前面。
使用系统(CLS);可以达到画面清除的效果,在DOS画面中。系统功能已经包含在标准C库中,系统调用是通过命令进行的。函数原型:int system (char * command);参数:字符类型的命令函数:发出DOS命令。
实例:#include #include int main(void){printf("Hello World!\n");system("PAUSE");//系统PAUSEsystem("CLS");//清屏system("PAUSE");//系统PAUSEreturn 0;}。
参考资料:
百度百科-C语音
C语言中清屏函数是为清除屏幕上的输出功能,用法是:
void clrscr(void);
程序例:
#include conio.h
int main ()
{
int i;
clrscr();
for (i = 0; i 20; i++);
cprintf("%d\r\n", i);
cprintf("\r\nPress any key to clear screen");
getch();
clrscr();
cprintf("The screen has been cleared!");
getch();
return 0;
}
相似的clrscr清屏函数:
clrscr并不是C语言的标准库函数,而是TC平台特有的函数,在其它编译器中无法使用。
1、函数声明:
void clrscr(void);
2、头文件:
#include conio.h
3、程序示例:
4、在当前主流编译器中,不支持该函数,可以用
system("cls");//windows平台
或
system("clear");//unix/Linux平台
实现相同效果。
没有部分清屏函数。
要达到部分清屏目的,你可以先全清,再把不要清的内容重新输出一遍。
相当于动画片,一幅一幅 全清,部分重画,添加更新。
你可以 全清,重画菜单。
下面程序在屏幕中部显示时间变化, 用的是: 全清,部分重画,更新
#includestdio.h
#includetime.h
void wait ( int seconds )
{
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() endwait) {}
}
int main ()
{
time_t rt;
struct tm *t;
long int i;
for (i=0;i3600;i++)
{
time ( rt );
t = localtime ( rt );
system("cls");printf("\n\n\n\n\n\n\n\n\t");
printf ( "Year: %d ", t-tm_year+1900 );
printf ( "Month: %d ", t-tm_mon +1 );
printf ( "day: %d ", t-tm_mday);
printf ( "hour: %d ", t-tm_hour);
printf ( "minute: %d ", t-tm_min);
printf ( "second: %d\n", t-tm_sec);
wait (1);
}
return 0;
}
C中:
清屏的具体代码是:system("cls");
头文件是:#includewindows.h
C++中:
头文件 conio.h
函数原形:void clrscr(void)
例子:
#include stdio.h
#include conio.h
void main()
{
printf("test first!\n");
clrscr();
printf("Now, U can't see the first words after clrscr\n");
}
摘自: