第三章条件判断程序

今年是2014年编写程序判断今年是闰年还是平年。

Paste_Image.png
Paste_Image.png
Paste_Image.png
Paste_Image.png
Paste_Image.png

为什么不能对num初始化 int num = 0;

Paste_Image.png
Paste_Image.png
Paste_Image.png
Paste_Image.png
Paste_Image.png
#include<stdio.h>
int main(void)
{
   int year =2014;
   
   if()
   {
      printf(")
   {
   else
   {
      printf(")
   }

C语言中的三目运算符:“?:”,其格式为:
** 表达式1 ? 表达式2 : 表达式3;**

检查条件

这个程序让用户输入一个1~10之间的数字,再确定该数字有多大。

 //program 3.1 A simple example of the if statement
             #include<stdio.h>

             int  main (void)'
             { 
               int  number  = 0 ;    //初始化为0,分号为英文下的
               printf("\n Enter an integer between 1 and 10: ");
               scanf("%d",&number);

               if( number > 5 )
               printf(" You entered  %d which is greater  than 5\n", number);

                if (number < 6)
                printf("You entered %d which is less  than 6\n", number);
                return   0 ;
              }

使用IF语句分析数字

假定某个产品的售价是$3.50/个,当订购数量大于10时,就提供5%的折扣,使用 if-else语句可以计算并输出给定数量的总价。*

  //program 3.2 Using if statements to decide on a discount

               #include  <stdio.h>

               int main ()
               {
                  const double unit_price  =  3.50;
                  int  quantity  =  0;
                  printf("Enter the number that  you want to buy :");
                  scanf("  %d ", &quantity);

                  double   total =  0.0 ;
                  if (quantity >10 )
                    total =quantity*unit_price*0.95;
                  else
                     total   = quantity*unit_price;
                  printf("The price for %d is $%.2f\n",quantity,total);
                  return  0 ;
               }

分析数字

下面用另外几个例子练习if技巧。这个程序测试输入的数是偶数还是奇数如果是偶数,就接着测试该数字的一半是否还是偶数*

  //program 3.3 Using nested ifs to analyze numbers
  #include <stdio.h>
  #include <limits.h>

  int main (void)
  {
     long test =  0 L;

     printf("Enter an integer less than %1d:", LONG_MAX)  
     scanf(" %1d", &test );

     if (test  % 2L == 0L)
     {
         printf("The  number  %1d  is even", test);

         if((test/2l)    %  2L== 0L);
         {
            printf("\nHalf of  %1d is also even", test);
            printf("\nThat's interesting isn't it?\n");
         }
      }
     else
       printf("The number %1d is odd\n", test);
       return 0 ;
      }

将大写字母转化为小写字母

这个例子使用新的逻辑运算符,将输入的大写字母转化为小写字母

          //program  3.4 converting uppercase  to lowercase
                  #include <stdio.h>
              
                  int main (void)
                  {
                     char  letter  = 0;

                     printf (”Enter an uppercase letter: ");
                     scanf("%c", &letter);

                    if (letter >= 'A ')( letter <= 'Z')
                       {
                         letter = letter - 'A' + 'a';
                         printf("You entered an uppercase %c\n", letter);
                       }
                       else
                          printf("Try using the shift key! I want a capital letter.\n");
                   return 0;
                 }

转换字母的一种更好的方式

//program 3.5 Testing letters an easier way
#include <stdio.h>
int main (void)
{
   char  letter = 0;

   printf("Enter an upper case letter:");
   scanf(" %c ", &letter);

   if ((letter >= 'A')&&(letter <= 'z'))
   {
       letter += 'a'-'A';
       printf("You enter an uppercase %c.\n", letter);
   }
   esle 
      printf("You did not enter an uppercase letter.\n");
   return 0;
    }

**使用条件运算符 **

这个折扣业务可以转换为一个小例子。假定产品的单价仍是¥3.50,但提供三个级别的折扣:数量超过50,折扣为15%;数量超过20,折扣为10%;数量超过10,折扣为5%.

//program 3.6 Multiple discount levels
#include <stdio.h>

int main (void)
{
   const double unit_price =3.5;
   const  double    discount1  = 0.05;
   const  double    discount2  = 0.1;
   const  double    discount3  =0.15
   double total_price = 0.0;
   int  quantity = 0;

    printf("Enter  the  number that you want to buy: ");
    scanf("  %d ",  &quantity);

    total_price  =quantity*unit_prine*(1.0  -
                                           (quantity > 50 ?  discount3  :  (
                                           (quantity  >20  ?  discount2  : (
                                (quantity  > 10  ? discount1   :  0.0))));
    printf("The price for %d  is $%.2f\n",quantity,total_price);
    return  0 ;
    }

清楚地使用逻辑运算符

假定程序要为一家大型药厂面试求职者。该程序给满足某些教育条件的求职者提供面试的机会。满足如下条件的求职者会接到面试通知*:
(1)25岁以上,化学专业毕业生,但不是毕业于耶鲁。
(2)耶鲁大学化学专业毕业生。
(3)28岁以下,哈弗大学经济学专业毕业生。
(4)25岁以上,耶鲁大学非化学专业毕业生。
实现该逻辑的程序如下:

 //program 3.7 confused recruiting policy
#include < stdio.h >
#include < stdbool.h >

int main ( void )
{
   int age        =  0;
   int college   =  0;
   int subject   =  0;
   bool interview  =  false;

   printf("\nWhat college? 1 for harvard, 2 for Yale, 3 for other: ");
   scanf("%d", &college);
   printf("\nwhat subject? 1 for Chemistry, 2 for economics, 3 for other: ")
   scanf("%d", &subject);
   printf("\nHow old is the applicant? ");
   scanf("%d", &age);

   if(age >25 && subject  ==  1) && (college  == 3 || college ==1 )
      interview  =   true ;
   if (college  ==  2 &&  subject   ==  1 )      逻辑与(且)
       interview =   true;
   if(college == 2 && (subject == 2 || subject == 3)  &&  age  > 25 )
        interview  = true;
    if(college == 2 &&(subject ==  2  || subject  == 3 ) &&  age > 25)
        interview  =  true;

    if(interview)
       printf("\n\nGive  'em an interview\n");
    else
       printf("\n\nReject  'em\n");
    return  0;
 }

试试看 :选择幸运数字

这个例子假定,在抽奖活动中有三个幸运的数字,参与者要猜测一个幸运的数字,switch语句会结束这个猜测过程,给出参与者可能赢得奖励.*

        //program 3.8 Lucky Lotteries
        #include<stdio.h>

        int  main (void)
        {
            int  choice = 0;

            printf("pick  a number between 1 and 10 and you may a prize ! ");
            scanf("%d", &choice);

            if ((choice > 10 ) || (choice < 1 ))      逻辑或
            choice =  11

            switch(choice)
           {
                case 7:
                   printf("Congratulations!\n");
                   printf("You win the collected works of Amos Gruntfutock.\n");
                   break;

               case 2:
                  printf(" You win the folding thermometer-pen-watch-umbrell.\n")
                  break;

                case 8:
                   printf("You win the  lifetime  supply of  aspirin   tablets.\n")
                   break;

               case 11:
                 printf("Try  between  1 and  10.You wasted your guess.\n")
                 break;

               default:
                 printf("Sorry, you  lose.\n");
                 break;
           }
           return 0;
       } 

试试看:是或否

//program 3.9 testing cases
#include <stdio.h>

int main(void)
{
    int main(void)
    char answer =0;
 
   printf(" Enter Y or N:  ");
   scanf(" %c", &answer);
 
switch(answer)
{
    case 'y':case 'y':
    printf("You responded in the affirmative.\n");
    break;

    case 'n': case 'N':
    printf("You responded in the negative.\n");
    break;

    default:
    printf("You did not respond correctly...\n");
    break;
  }
  return 0;
}

switch 语法的使用


#include "stdafx.h"
#include "stdio.h"
#define UP    1
#define DOWN  2
#define LEFT  3
#define RIGHT 4


int _tmain(int argc, _TCHAR* argv[])
{  
    int dir = UP;
    switch (dir){
    case UP:
        printf("GO up\n");
        break;
    case DOWN:
        printf("GO d");
        break;
    case LEFT:
        printf("Go left\n");
        break;
    case RIGHT:
        printf("Go Right\n");
        break;
    }
    
    return 0;
}


int main (void)
   {
           int a = 10;
           int b = 8;
          if(a > b){
            printf(" Max number is a, %d, a");
           }
          else{
             printf("Max number is b, %d,b");
           }
          return 0;
}
int main(void)
    {
         int  score =0;
     if(score >80){
       printf("Fine\n");
      }else if(score >60){
         printf("Ok\n");
       }esle(score<60){
          printf("Fail\n");
        return 0;
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,580评论 18 139
  • 第一部分Common Lisp介绍第1章 介绍一下Lisp你在学的时候觉得已经明白了,写的时候更加确信了解了,教别...
    geoeee阅读 2,898评论 5 8
  • 现在看书,心里总是紧张,习惯了快速阅读,一目几行,以往只求了解大概意思,不求精读,可往往到了想要好好看书的时候,老...
    carek硕阅读 135评论 0 0
  • 文/枫丹白露 本故事纯属虚构,如有雷同,实属巧合 ( 二 ) 郑炳强提出为了说...
    枫丹白露_阅读 1,543评论 0 2
  • 入选时间:2016年 7月31日 入选级别:第七层融会贯通 入选理由:i_佚名,男,90后,在校大学生,物理学专业...
    周助人阅读 301评论 0 0