C語言中使程序暫停的方法,c語言程序暫停
#include "stdio.h" getchar()連用以取出回車
#include "string.h"
#include "stdlib.h" system("pause")
#include "conio.h" getch()
貼一段別人的例子:
利用getchar()讀取字符時,如何去除回車鍵?
在linux的C語言中,當要讀取一個字符(比如說‘Z’)時可以利用c=getchar()函數,終端中輸入Z,然後再按回車鍵,這時c中就存放了Z字符。當我們再次使用c=getchar()來獲取另一個字符時(比如說'Q')獲取到的確是回車。因此我們在利用getchar時通常連用兩次來避免回車的影響。如下所示:
c=getchar();//獲取Z
getchar();//將回車從緩沖中讀取出來
……
……
……
c=getchar();//用來讀取Q
getchar();//將回車從緩沖中讀取出來