(2)用 if语句 区间判断

 1 /*此例子只作为演示*/
 2 
 3 #include <stdio.h>
 4 int main()
 5 {
 6 printf("请问贵公司给出的薪资是:\n");
 7 
 8     double c  ;
 9 
10     //printf("我们给出的是:");
11     scanf("%lf",&c);
12 
13 
14     if (c > 15000 )                            //大于15000
15     {
16 
17         printf("我愿意留下来\n");
18     }
19 
20     else if (  c > 8000 && c <= 15000)  //大于8000 小于 15000
21     {
22 
23         printf("我考虑一下\n");
24     }
25 
26     else if (c > 5000 && c <=7999)      // 大于5000 小于7999
27     {
28         printf("我不适合这份工作");
29     }
30 
31     else
32     {
33 
34         printf("再见来不及握手\n");
35     }
36 
37 
38 
39     return 0;
40 }

/*有4种选择,对应区间输入,返回对应输出值*/

 

posted on 2021-07-28 12:14  Bytezero!  阅读(332)  评论(0编辑  收藏  举报