namespace ThetwelveLabors1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Welcome to Mythology 101 class, today i will ask you about 10 of the 12 labors of Hercules.");
Console.WriteLine("what was the first labor of Hercules?");
Console.ReadLine();
}
}
}
这是我当前的代码。我正在尝试插入位置以允许用户输入。一旦一个问题被正确回答,程序应该问下一个问题,依此类推10个问题,然后有一个退出条件。