while循环
#include <stdio.h> #define GOLD 100 int main(void) { int rush = 1; while (rush <= GOLD) { if (rush == 50) { printf("挖到铁矿了,扔掉不要。\n"); rush++; continue; /*continue是跳过本次循环体中余下尚未执行的语句进入下一个循环 (但是其实,在这里如果没有continue结果也是正常的,即把第50扔掉了) 但这里为了体现continue的作用是rush++后等于51,返回到while 此时rush=51,跳过本次if继续进行while循环*/ } printf("%d\n", rush); rush++; } printf("Flished!"); return 0; }
标签:rush,int,while,2023.1,main,seventeenth From: https://www.cnblogs.com/ningzj/p/17035558.html