#include <iostream> using namespace std; #define week 7 #include <string> int main() { int score = 0; cout << "请输入您的分数" << endl; cin >> score; if (score >= 400) { cout << "你基本上岸了,好好准备下复式。"; } else if (score < 400 && score >= 350) { cout << "上岸概率很大,一定要好好准备复式。"; } else { cout << "相信你能逆袭,加油好好准备复式!"; } system("pause"); return 0; }
true :前
false:后
c = (a > b ? 1 : 0);
true 循环 fales 结束
先执行一遍,再判断循环。
循环套循环
break语句,用于跳出 选择结构 与 循环结构