scanf后接getchar模板

#include <stdio.h>
char get_choice(void);
char get_first(void);
int get_int(void);
void count(void);
int main(void)
{
  int choice;
   while ( (choice = get_choice()) != 'q') /*获得选项*/
    {
        switch (choice)
        {
            case 'a' :  
                break;
            case 'b' :  
                break;
            case 'c' :  count();
                break;
            default  :  
                break;
        }
    }
    printf("Bye.\n");
    
    return 0;
}

char get_choice(void) /*获得选项*/
{
    int ch;
    printf("Enter the letter of your choice:\n");
    printf("a. advice           b. bell\n");
    printf("c. count            q. 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)      /*读取第一个字符*/
{
    int ch;
    
    ch = getchar();
    while (getchar() != '\n')    /*清除后面的*/
        continue;
    
    return ch;
}


void count(void)
{
    int n,i;
    
    printf("Count how far? Enter an integer:\n");
    n = get_int();          /*获取输入*/
    
    while ( getchar() != '\n')
        continue;
}
int get_int(void)          /*获取输入scanf*/
{
    int input;
    char ch;
    
    while (scanf("%d", &input) != 1)           /*获取输入scanf*/
    {
        while ((ch = getchar()) != '\n')          
            putchar(ch);  // dispose of bad input
        printf(" is not an integer.\nPlease enter an ");
        printf("integer value, such as 25, -178, or 3: ");
    }
    
    return input;
}


#include <stdio.h>
int main(int argc, char *argv[])
{
	char opt;
    while((opt=getchar())!='q')
    {
    	
    	switch(opt)
    	{
    		
	    	case 'a':...
                    break;
			default : printf("please enter proper choose:");
			break;
			
	    }
       while(scanf("%lf",&hour)==1 )
	{	
		break;
	}

	while((opt=getchar())!='\n')  /*可以将getfirst放在循环末尾,先运算首字符在跳过'\n'*/
	    continue;
    }
	printf("Done\n");
    return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值