026.程序流程结构-选择结构-嵌套if语句
作者:互联网
#include <iostream> using namespace std; int main() { //选择结构 单行if语句 //用户输入分数,如果分数大于600,视为考上一本大学,在屏幕上输出 //1.用户输入分数 int scroe = 0; cout << "请输入一个分数:" << endl; cin >> scroe; //2.打印用户输入的分数; cout << "你输入的分数是:" << scroe << endl; //3.判断分数是否大于600,如果大于600,输出 //注意事项,if条件后面不要加分号; if (scroe > 600) { if (scroe > 700) { cout << "你考上北大" << endl; } else if (scroe > 650) { cout << "你考上清华" << endl; } else { cout << "你考上人大" << endl; } } else if (scroe > 500) { cout << "你考上的是二本大学" << endl; } else if (scroe > 400) { cout << "你考上的是三本大学" << endl; } else { cout << "你未考上的大学" << endl; } system("pause"); return 0; }
标签:分数,cout,scroe,int,程序流程,嵌套,026,输入,600 来源: https://www.cnblogs.com/ceovs/p/15225719.html