程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> C語言入門知識 >> C語言簡單的菜單選項

C語言簡單的菜單選項

編輯:C語言入門知識
#include 
char get_choice(void);
char get_first(void);
int get_int(void);
void count(void);
int main(){
	int choice;
	void count (void);
	while ((choice =get_choice())!='q')
	{
		switch(choice)
		{
		   case 'a' : printf("Buy low ,shell high \n");
			break;
			case 'b' : putchar('\a');
			break;
			case 'c' : count();
			break;
			default : printf("Buy adbcxz \n");
			break;
		}
	}
	printf("Bye .\n" );
	return 0;

}


void count (void)
{
	int n ,i;
	printf("Count how far ? Enter an integer : \n");
	n=get_int();
	for(i=1; i<=n;i++)
	{
		printf("%d\n",i);
	}
	while (getchar() !='\n')
		continue;
}
char get_choice(void)
{
	char ch;
	printf("Enter the letter of your choice :\n");
	printf(" a. advice        b. bell\n");
	printf("c. count          d.quit\n");
	ch=get_first();
	while((ch<'a'||ch>'c') && ch!='q')
	{
		printf("please respond with a,b,c,or q\n");
		ch=get_first();
	}
	return ch;
}

//獲取輸入字符串
char get_first(void)
{
	char ch;
	ch=getchar();
	while(getchar() !='\n')
	continue;
	return ch;
}
int get_int(void)
{
	int input;
	char ch;
	while(scanf("%d",&input) !=1)
	{
		while((ch= getchar()) !='\n')
			putchar(ch);
		printf(" is not an integer .\n please enter an ");
		printf("integer value ,such as 25, -178, or 3:");
	}
	return input;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved