break语句
cpp#include <iostream> using namespace std; int main() { cout << "请选择副本难度" << endl; cout << "1、普通" << endl; cout << "2、中等" << endl; cout << "3、困难" << endl; int select = 0; cin >> select; switch (select) { case 1: cout << "您选择的是普通难度" << endl; break; case 2: cout << "您选择的是中等难度" << endl; break; case 3: cout << "您选择的是困难难度" << endl; break; default: break; } system("pause"); return 0; }
cpp#include <iostream> using namespace std; int main() { for (int i = 0; i < 10; i++) { if (i == 5) { break; } cout << i << endl; } system("pause"); return 0; }
cpp#include <iostream> using namespace std; int main() { for (int i = 0; i < 10; i++) { for (int j = 0; j < 10; j++) { if (j == 5) { break; } cout << "* "; } cout << endl; } system("pause"); return 0; }
continue 语句
如果是奇数输出,偶数不输出
cpp#include <iostream> using namespace std; int main() { for (int i = 0; i <= 100; i++) { if (i % 2 == 0) { continue; } cout << i << endl; } system("pause"); return 0; }
goto语句
cpp#include <iostream> using namespace std; int main() { cout << "1、xxxxx" << endl; cout << "2、xxxxx" << endl; goto FLAG; cout << "3、xxxxx" << endl; FLAG: cout << "4、xxxxx" << endl; cout << "5、xxxxx" << endl; system("pause"); return 0; }
跳转语句(个人学习笔记黑马学习)
寻心的无心者2023-08-29 14:01
相关推荐
抱走江江9 分钟前
SpringCloud框架学习(第二部分:Consul、LoadBalancer和openFeign)槿花Hibiscus32 分钟前
C++基础:Pimpl设计模式的实现黑不拉几的小白兔1 小时前
PTA部分题目C++重练写bug的小屁孩1 小时前
websocket身份验证不会编程的懒洋洋1 小时前
Spring Cloud Eureka 服务注册与发现scc21402 小时前
spark的学习-06luoganttcc2 小时前
能否推荐开源GPU供学习GPU架构chordful2 小时前
Leetcode热题100-32 最长有效括号材料苦逼不会梦到计算机白富美2 小时前
线性DP 区间DP C++垂杨有暮鸦⊙_⊙2 小时前
阅读2020-2023年《国外军用无人机装备技术发展综述》笔记_技术趋势