C语言是一种广泛使用的计算机编程语言,它提供了丰富的运算符和数据类型,使得程序员能够编写出高效、可移植的代码,在C语言中,判断语句是非常重要的一部分,它允许我们根据条件执行不同的代码块,本文将详细介绍如何在C语言中使用判断语句。
1、基本概念
在C语言中,判断语句主要有两种:if语句和switch语句,if语句用于实现多条件判断,而switch语句则用于实现多分支选择。
2、if语句
if语句的基本语法如下:
if (条件表达式) { // 如果条件为真,执行这里的代码 } else { // 如果条件为假,执行这里的代码 }
条件表达式可以是任何返回整数的表达式,包括算术表达式、关系表达式、逻辑表达式等,如果条件表达式的结果为非零(真),则执行大括号内的代码;否则,执行else后面的代码。
注意:if语句可以嵌套使用,即在一个if语句的内部再包含一个或多个if语句,这种情况下,外层的if语句称为主if语句,内层的if语句称为子if语句。
示例:
#include <stdio.h> int main() { int a = 10, b = 20; if (a > b) { printf("a大于b "); } else { printf("a小于等于b "); if (a == b) { printf("且a等于b "); } else { printf("且a不等于b "); } } return 0; }
3、ifelse ifelse语句
我们需要根据多个条件来执行不同的代码块,这时,可以使用ifelse ifelse语句来实现,其基本语法如下:
if (条件表达式1) { // 如果条件1为真,执行这里的代码 } else if (条件表达式2) { // 如果条件1为假,且条件2为真,执行这里的代码 } else if (条件表达式3) { // 如果条件1和条件2都为假,且条件3为真,执行这里的代码 } else { // 如果所有条件都为假,执行这里的代码 }
示例:
#include <stdio.h> int main() { int score = 85; if (score >= 90) { printf("优秀"); } else if (score >= 80) { printf("良好"); } else if (score >= 60) { printf("及格"); } else { printf("不及格"); } return 0; }
4、switch语句
switch语句用于实现多分支选择,其基本语法如下:
switch (表达式) { case 常量1: // 如果表达式的值等于常量1,执行这里的代码 break; // 可选,用于跳出switch语句,如果没有break,会继续执行后面的case代码块 case 常量2: // 如果表达式的值等于常量2,执行这里的代码 break; // 可选,用于跳出switch语句,如果没有break,会继续执行后面的case代码块 // ...其他case代码块... default: // 可选,当所有case都不匹配时,执行这里的代码 }
示例:
#include <stdio.h> #include <stdlib.h> #include <time.h> int main() { int num = rand() % 6 + 1; // 生成1到6之间的随机数 printf("随机数是:%d", num); // 输出随机数的提示信息 switch (num) { // 根据随机数执行不同的操作 case 1: // 如果随机数等于1,输出“恭喜你,猜对了!”并退出程序 printf("恭喜你,猜对了!"); exit(0); // 退出程序,返回0表示正常结束程序运行过程,非0表示异常结束程序运行过程(如错误) case 2: // 如果随机数等于2,输出“很遗憾,猜错了。”并退出程序(这里省略了exit(0)) printf("很遗憾,猜错了。"); // 输出猜错的提示信息(这里省略了exit(0)) // ...其他case代码块... // ...default代码块... } // end of switch statement } // end of main function return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return statement } // end of program execution return
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/428002.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复