c语言常用条件判断,C语言_条件判断语句

//***** 条件判断语句 *****

/*

条件判断语句有两种,一种是if语句,一种是switch语句

*/

// if语句

void test1()

{

int x = 100;

if (x < 100)

{

printf("x小于100!\n");

}

else if (x == 100)

{

printf("x等于100!\n");

}

else

{

printf("x大于100!\n");

}

/*

if...else if...else 这是经常使用的条件判断if语句

*/

}

// switch语句

void test2()

{

char ch;

printf("请输入一个字符用于判断:\n");

scanf("%c",&ch);

switch (ch)

{

case 'a':

printf("你输入的是:%c\n",ch);

break;

case 'b':

printf("你输入的是:%c\n",ch);

break;

case 'c':

printf("你输入的是:%c\n",ch);

break;

default:

printf("你输入的字符不在abc之中!\n");

break;

}

/*

switch...case 这是经常使用的条件判断switch语句,case所传入的参数是直接指明要判断的参数

*/

}

你可能感兴趣的:(c语言常用条件判断)