對於學校來說,我有一項任務是製作一個控制檯程序,讓用戶在這種情況下猜測我的幸運詞「幸運」,它需要使用條件運算符,現在我似乎無法以任何方式使其工作。讓用戶用條件運算符猜測你的幸運詞
namespace Assignment8
{
class Program
{
static void Main(string[] args)
{
ConsoleKeyInfo lucker = new ConsoleKeyInfo();
string lucky = Console.ReadLine();
return lucky == "Lucky" ? "That is Correct" : "That is Wrong!";
}
}
}
我希望你們至少可以幫我解決這個問題,或者給我一些提示。
您無法從'void'方法返回值。也許你想打印它。 – Guy
'Console.WriteLine(幸運);'? – Marusyk