C语言中while和if的嵌套?
相当于
while(表达式1)
{
if(表达式2)
{
表达式3;
}
else
{
表达式4;
}
}
首先进行 表达式1 判断,true,跳到if语句,否则退出。
上面while为true,
进行表达式2判断,
1.为true 运行表达式3,之后在跳到while那 再 判断
2.为false运行表达式4,之后在跳到while那再判断
access 中if嵌套公式怎么写?
int age = 23; int yj = 1300; if(40>age>22&&2400>yj>1200){ System.out.print(1100); }else { System.out.print(700); } int age = 23; int yj = 800; if(40>age>22&&1200>yj>600){ System.out.print(600); }else{ System.out.print(400); }