请求高手解释步骤,我是菜鸟看不懂!
#include <stdio.h>main()
{
int x = 15;
while (x>10&&x<50)
{
x++;
if (x/3)
{
x++;break;
}
else continue;
}
printf("%d\n",x);
}
#include <stdio.h> main() { int x = 15; while (x>10&&x<50)//一个简单的while循环,x>10&&x<50值当x在这个范围内就执行这个循环语句 { x++;//x自加1,相当于x=x+1;此时x=16 if (x/3)//if判断语句,当()内的式子值为真(即值不为0),就执行下面{}的内容 { x++;break;//break跳出循环,此时x=17 } else continue;//相对于if语句,当if语句不成立就执行这个语句,此处为继续进行下一次循环 } printf("%d\n",x);//输出 }分不在少,有分则行!