码迷,mamicode.com
首页 > 其他好文 > 详细

条件都判断完才能判断的最基础的有车有房有钱才能结婚的判断条件

时间:2015-03-28 12:58:46      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

static void Main(string[] args)
{
while (true)
{
Console.Write("请问有没有房子?:");
string a = Console.ReadLine();
Console.Write("请问有没有车子?:");
string b = Console.ReadLine();
Console.Write("请问有没有钱?:");
string c = Console.ReadLine();
if (a=="有")
{
if (b=="有")
{
if (c=="有")
{
Console.WriteLine("那就结婚吧!");
}
}
}
else if (a=="没有"||b=="没有"||c=="没有")
{
Console.WriteLine("你走开!本年神还在等下一位你");
}
else
{
Console.WriteLine("请只回答有或者没有");
}
}

}

条件都判断完才能判断的最基础的有车有房有钱才能结婚的判断条件

标签:

原文地址:http://www.cnblogs.com/dlexia/p/4373999.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!