编程语言
首页 > 编程语言> > 程序流程结构——if语句

程序流程结构——if语句

作者:互联网

c语言支持最基本的三种运行结构:

 

#define _CRT_SECURE_NO_WARNINGS

#include<stdio.h>

#include<string.h>

#include<stdlib.h>

#include<math.h>

#include<time.h>

 

int main()

{

  int score;

  scanf("%d",&score); 

//如果表达式为真,则执行{}对应代码。

//1.if(表达式){}

//2.if (表达式){}   else{}

//3.if (表达式){}   else if(表达式)    else{}

//4.条件嵌套

  if (score>700)

  {

    printf("恭喜000考生已被我校(xxx大学)录取\n");

    

    if(score>720)

    {

      printf("恭喜000考生已被我校(xxx大学计算机专业)录取\n");

    }  

    

    else if(score>710)

    {

      printf("恭喜000考生已被我校(xxx大学挖掘机专业)录取\n");

    }

 

    else

    {

      printf("恭喜000考生已被我校(xxx大学母猪产后护理专业)录取\n");

    }

 

  }

 

  else if(score>680)

  {

    printf("恭喜000考生已被我校(xx大学母猪产后护理专业)录取\n");

  }

 

  else

  {

    printf("恭喜000考生已被我校(x大学母猪产后护理专业)录取\n");

  }

     

  return EXIT_SUCCESS;

}

标签:语句,程序流程,else,我校,score,000,printf,include,结构
来源: https://www.cnblogs.com/wanghong19991213/p/13454819.html