1 Star 0 Fork 0

fb1103/programming_c++

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test2.cpp 707 Bytes
一键复制 编辑 原始数据 按行查看 历史
fb1103 提交于 2022-01-07 09:05 . 第一次提交
#include <iostream>
//时间:2022年1月3日16:48:37
using namespace std;
int main(void)
{
cout << "Y" <<endl;
int grade;
cout << "输入你的高考成绩:";
cin >> grade;
cout << "grade=" << grade <<endl;
if(grade>600)
{
cout <<"一本" <<endl;
if(grade>700)
{
cout << "北大"<<endl;
}
else if(grade>650)
{
cout <<"清华"<<endl;
}
else
{
cout << "人大"<<endl;
}
}
else if (grade > 500)
{
cout << "二本"<<endl;
}
else if(grade>400)
{
cout << "三本"<<endl;
}
else
{
cout << "未考上本科"<<endl;
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/fb1103/programming-c.git
git@gitee.com:fb1103/programming-c.git
fb1103
programming-c
programming_c++
master

搜索帮助