⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 play_again0.c

📁 unix linux 编程实践源代码
💻 C
字号:
/* play_again0.c *	purpose: ask if user wants another transaction *	 method: ask a question, wait for yes/no answer *	returns: 0=>yes, 1=>no *	 better: eliminate need to press return  */#include	<stdio.h>#include	<termios.h>#define	QUESTION	"Do you want another transaction"int get_response( char * );int main(){	int	response;	response = get_response(QUESTION);	/* get some answer	*/	return response;}int get_response(char *question)/* * purpose: ask a question and wait for a y/n answer *  method: use getchar and ignore non y/n answers * returns: 0=>yes, 1=>no */{	printf("%s (y/n)?", question);	while(1){		switch( getchar() ){			case 'y': 			case 'Y': return 0;			case 'n': 			case 'N': 			case EOF: return 1;		}	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -