使用系統(tǒng)(CLS);頭文件stdlib的簡(jiǎn)單示例。h #包括 stdio。h #包含 stdlib。h int main () {printf ("Hello World! "\ n”);系統(tǒng)(“暫?!?;系統(tǒng)(CLS);系統(tǒng)(“暫?!?;返回0;}。
創(chuàng)新互聯(lián)建站堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站制作、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿(mǎn)足客戶(hù)于互聯(lián)網(wǎng)時(shí)代的萬(wàn)載網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
clrscr函數(shù)是C語(yǔ)言的清除函數(shù),它清除屏幕上的輸出,clrscr是clear screen的縮寫(xiě)。Clrscr不是C語(yǔ)言的標(biāo)準(zhǔn)庫(kù)函數(shù),而是TC平臺(tái)特有的函數(shù),其他編譯器無(wú)法使用。
擴(kuò)展資料:
在C語(yǔ)言中,需要在代碼的開(kāi)頭定義變量,在代碼的開(kāi)頭不允許使用表達(dá)式。因此,不允許將調(diào)平函數(shù)放在它的前面。
使用系統(tǒng)(CLS);可以達(dá)到畫(huà)面清除的效果,在DOS畫(huà)面中。系統(tǒng)功能已經(jīng)包含在標(biāo)準(zhǔn)C庫(kù)中,系統(tǒng)調(diào)用是通過(guò)命令進(jìn)行的。函數(shù)原型:int system (char * command);參數(shù):字符類(lèi)型的命令函數(shù):發(fā)出DOS命令。
實(shí)例:#include #include int main(void){printf("Hello World!\n");system("PAUSE");//系統(tǒng)PAUSEsystem("CLS");//清屏system("PAUSE");//系統(tǒng)PAUSEreturn 0;}。
參考資料:
百度百科-C語(yǔ)音
C語(yǔ)言中清屏函數(shù)是為清除屏幕上的輸出功能,用法是:
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清屏函數(shù):
clrscr并不是C語(yǔ)言的標(biāo)準(zhǔn)庫(kù)函數(shù),而是TC平臺(tái)特有的函數(shù),在其它編譯器中無(wú)法使用。
1、函數(shù)聲明:
void clrscr(void);
2、頭文件:
#include conio.h
3、程序示例:
4、在當(dāng)前主流編譯器中,不支持該函數(shù),可以用
system("cls");//windows平臺(tái)
或
system("clear");//unix/Linux平臺(tái)
實(shí)現(xiàn)相同效果。
沒(méi)有部分清屏函數(shù)。
要達(dá)到部分清屏目的,你可以先全清,再把不要清的內(nèi)容重新輸出一遍。
相當(dāng)于動(dòng)畫(huà)片,一幅一幅 全清,部分重畫(huà),添加更新。
你可以 全清,重畫(huà)菜單。
下面程序在屏幕中部顯示時(shí)間變化, 用的是: 全清,部分重畫(huà),更新
#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
函數(shù)原形: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");
}
摘自: