C++语言开发示例:16. 并且2
more_and.cpp
#include <iostream>
const char *qualify[4] =
{
"1,000-meter race.\n",
"mud tug-of-war.\n",
"masters canoe jousting.\n",
"pie-throwing festival.\n"};
int main()
{
using namespace std;
int age;
cout << "Enter your age in years: ";
cin >> age;
int index;
if (age > 17 && age < 35)
{
index = 0;
}
else if (age >= 35 && age < 50)
{
index = 1;
}
else if (age >= 50 && age < 65)
{
index = 2;
}
else
{
index = 3;
}
cout << "You qualify for the " << qualify[index];
} 最后更新于1年前
本文由人工编写,AI优化,转载请注明原文地址: C++语言开发示例:16. 并且2
推荐阅读
评论 (0)
发表评论
昵称:加载中...
暂无评论,快来发表第一条评论吧!