一、if语句
三种形式
1. 单行格式if语句
#include <iostream>
using namespace std;
int main()
{
int score = 0;
cout << "输入分数" << endl;
cin >> score;
cout << "你输入的分数为"<<score << endl;
if (score > 600)
{
cout << "您有望冲击北京科技大学" << endl;
}
system("pause");
return 0;
}
2. 多行格式if语句
#include <iostream>
using namespace std;
int main()
{
int score = 0;
cout << "输入分数" << endl;
cin >> score;
cout << "你输入的分数为"<<score << endl;
if (score > 600)
{
cout << "您有望冲击北京科技大学" << endl;
}
else
{
cout << "不建议填报北京科技大学" << endl;
}
system("pause");
return 0;
}
3. 多条件的if语句
#include <iostream>
using namespace std;
int main()
{
int score = 0;
cout << "输入分数" << endl;
cin >> score;
cout << "你输入的分数为"<<score << endl;
if (score > 650)
cout << "您稳入北京科技大学" << endl;
else if (score > 600)
{
cout << "您有望冲击北京科技大学" << endl;
}
else if(score>550)
{
cout << "您有望冲击深圳大学" << endl;
}
system("pause");
return 0;
}
4. 镶嵌if语句
#include <iostream>
using namespace std;
int main()
{
int number = 0;
cout << "请输入开黑人数" << endl;
cin >> number;
cout << "开黑人数为" << number << endl;
if (number >= 5)
{
cout << "可以玩云顶之弈和5排峡谷掉分" << endl;
if (number == 5)
cout << "建议5排峡谷,快乐掉分" << endl;
else
{
cout << "建议玩云顶之奕,休息娱乐" << endl;
}
}
system("pause");
return 0;
}
C++编程:掌握if语句的四种基本形式

本文详细介绍了C++中if语句的四种常见形式:单行格式、多行格式、多条件的if语句以及镶嵌if语句。通过实例展示了如何根据分数判断报考大学的可能性,以及根据人数决定适合的游戏模式。这些基础知识对于初学者理解条件控制语句至关重要。
3747

被折叠的 条评论
为什么被折叠?



