//你有钱吗?你有房子吗?你有车吗?你有能力吗?
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("一边去吧!");
}
}
}
}
}