我是 C# 的新手,我刚从 PHP 来。
具体来说,让我“复制/粘贴”我难以理解的代码。
我有一个函数,它从“当前年份”中减去“出生年份”并返回更新的年龄。现在,我需要检查用户的年龄是否小于 30 岁以打印出“您太年轻,无法查看此页面”消息,然后询问他/她是否想继续回答其余问题。然后我们根据答案做出决定。如果答案是“是”,我们如下所示,继续。现在我想知道,但是如果用户说“不”怎么办?如何中断代码?
例如,在 PHP 中,我曾经输入这个 - “exit()”。
提前致谢。
if (ma.HowOldImI(date1, date2) < 30)
{
Console.WriteLine("you are too young to view this page");
Console.WriteLine("would you like to continue the session?");
string confirm = Console.ReadLine();
if (confirm == "yes")
{
Console.WriteLine("Please type your name");
string nm = Console.ReadLine();
Console.WriteLine("Please type your born year");
int ag = Convert.ToInt16(Console.ReadLine());
gr.YouWereBorn(nm, ag);
}
}
else
{
Console.WriteLine("You are " + ma.HowOldImI(date1, date2) + " years old\n");
}