首页 > 其他 > 详细

钱、车、房、能力

时间:2015-07-14 22:30:14      阅读:267      评论:0      收藏:0      [点我收藏+]
//你有钱吗?你有房子吗?你有车吗?你有能力吗?
            Console.WriteLine("你有钱吗?");
            string a = Console.ReadLine();
            if (a == "有钱")
            {
                Console.WriteLine("我们继续聊聊吧!");
            }
            else
            {
                Console.WriteLine("你有房子吗?");
                string b = Console.ReadLine();

                if (b == "有房")
                {
                    Console.WriteLine("去看看房子吧");
                }
                else
                {
                    Console.WriteLine("你有车吗?");
                    string c = Console.ReadLine();
                    if (c == "有车")
                    {
                        Console.WriteLine("去兜兜风吧!");
                    }
                    else
                    {
                        Console.WriteLine("你有能力吗?");
                        string d = Console.ReadLine();
                        if (d == "有能力")
                        {
                            Console.WriteLine("我们谈谈吧!");
                        }
                        else
                        {
                            Console.WriteLine("一边去吧!");
                        }
                    }
                }
            }
        }

 

钱、车、房、能力

原文:http://www.cnblogs.com/SJP666/p/4646578.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!