zoukankan      html  css  js  c++  java
  • 7.12.8

    #  7.12.8
    #include <stdio.h>
    #define over_time  1.5 * 10
    #define three_hundred_rate  0.15
    #define one_hundred_half_rate  0.2
    #define more_then_four_hun_half_rate  0.25
    #define three_hundred  45
    #define four_hundred_half  75
    float rate(float n);
    int main(void)
    {
        float hours;
        float wage;
        float basic_wage = 0;
        int grade;
    
       while (1)
        {
        printf("*****************************************************************
    ");
        printf("Enter the number corresponding to the desired pay rate or action:
    ");
        printf("1) $8.75/hr                     2) $9.33/hr
    ");
        printf("3) $10.00/hr                    4) $11.20/hr
    ");
        printf("5) quit                                     
    ");
        printf("*****************************************************************
    ");
    
            if (scanf("%d", &grade) == 1)
            {
        		switch (grade)
        		{
        			case 1:
        					  basic_wage = 8.75;
        					  break;
        			case 2:
        					  basic_wage = 9.33;
        					  break;
        			case 3:
        					  basic_wage = 10.00;
        					  break;
        			case 4:
        					  basic_wage = 11.20;
        					  break;
        			case 5:
        					  goto quit;
        		}
                
                printf("basic_wage is %f
    ", basic_wage);
                printf("请输入工作时长:");
                scanf("%f", &hours);
                if (( hours <= (float)40) && (hours >= 0))
                    wage = basic_wage * hours;
                else 
                    wage = basic_wage * 40 + (hours - (float)40) * over_time;
                printf("工资总额:%.2f,税金:%.2f,净收入:%.2f
    ",
                        wage, rate(wage), wage - rate(wage));
            }
            else
                 printf("请输入正确选项!
    ");
        }
        quit: printf("再见!
    ");
        return 0;
    }
    
    float rate(float n)    // 函数定义
    {
        float tax;
        if (n <= 300)
            tax = three_hundred_rate * n;
        else if (n <= 450)
            tax = three_hundred + (n - (float)300) * one_hundred_half_rate;
        else 
            tax = four_hundred_half + (n - (float)450) * more_then_four_hun_half_rate; 
    
        return tax;    // 返回tax的值
    }
    

    在其中使用了goto语句,如果不使用goto语句怎么写?

  • 相关阅读:
    JS练习
    推断一组数的规律,并填充缺失的数
    IP地址的正则表达式写法
    相比于HTML4,HTML5废弃的元素有哪些?
    关于HTML5和CSS3的几个“新增”
    hdu 3092 简单数论+分组背包dp
    避障
    人工势场法
    A*
    pop 2049-简单bfs
  • 原文地址:https://www.cnblogs.com/EisNULL/p/10771532.html
Copyright © 2011-2022 走看看