代码
namespace 第五次作业第四题
{
class Program
{
static void Main(string[] args)
{
/**
* 提示用户输入年龄,如果大于等于18,则告知用户可以查看,如果小于10岁,则告知不允许查看,如果大于等于10岁并且小于18,
* 则提示用户是否继续查看(yes、no),如果输入的是yes则提示用户请查看,否则提示"退出,你放弃查看"。
* */
Console.WriteLine("请输入年龄");
int age = Convert.ToInt32(Console.ReadLine());
bool b = age >= 18;
bool c = age < 10;
bool a = age >= 10 && age < 18;
if (b)
{
Console.WriteLine("用户可以查询.");
}
else if (c)
{
Console.WriteLine("不允许查看.");
}
else if (a)
{
Console.WriteLine("是否继续查看(yes or no)");
string ll = Console.ReadLine();
if (ll == "yes")
{
Console.WriteLine("用户请查看。");
}
else if (ll == "no")
{
Console.WriteLine("退出,你放弃查看。");
}
Console.ReadKey();
}
}
}
}
网友评论