1

我是编码新手,编写了这个小控制台阅读程序来尝试理解数组、方法等。
我知道我的代码非常错误,可能没有正确编写(按书本)。
我想要一些关于如何修复我的程序的帮助,它有一个问题,控制台让我输入一个数字,但它没有从我的选择方法中读取。任何帮助都将受到极大的重视。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace PalacioGameImproved
{
class Program
{
    static void Main(string[] args)
    {
        WelcomeMessage();
        choices();

    }


    public static string WelcomeMessage()
    {
        string writeLines;
        Console.WriteLine("Pick a DooWop");
        Console.WriteLine("{0,15}", "0 = Johnny");
        Console.WriteLine("{0,13}", "1 = Nick");
        Console.WriteLine("{0,15}", "2 = Conrad");
        Console.WriteLine("{0,14}", "3 = Diane");
        Console.WriteLine("{0,13}", "4 = Rick");
        writeLines = Console.ReadLine();
        return writeLines;
    }

    public static void choices()
    {


        string[] names = new string[5];
        names[0] = "Johnny";
        names[1] = "Nick";
        names[2] = "Conrad";
        names[3] = "Diane";
        names[4] = "Rick";

        string UserInput = Console.ReadLine();

        if (UserInput == "0")
        {
            Console.WriteLine("is it the array");
        }

        else if (UserInput == "1")
        {
            Console.WriteLine(names[1]);
        }

        else if (UserInput == "2")
        {
            Console.WriteLine(names[2]);
        }

        else if (UserInput == "3")
        {
            Console.WriteLine(names[3]);
        }

        else if (UserInput == "4")
        {
            Console.WriteLine(names[4]);
        }
        else
        {
            Console.WriteLine("That was not one of the choices, please try again.");
            WelcomeMessage();
        }
    }
}

}

4

1 回答 1

3

您使用 Console.ReadLine 2 次。.net Fiddle 示例您的代码应该是

using System;

public class Program
{
    public static void Main()
    {
       WelcomeMessage();
       choices();
    }

    public static void WelcomeMessage()
    {
       Console.WriteLine("Pick a DooWop");
       Console.WriteLine("{0,15}", "0 = Johnny");
       Console.WriteLine("{0,13}", "1 = Nick");
       Console.WriteLine("{0,15}", "2 = Conrad");
       Console.WriteLine("{0,14}", "3 = Diane");
       Console.WriteLine("{0,13}", "4 = Rick");
   }

   public static void choices()
   {
      string[] names = new string[5];
      names[0] = "Johnny";
      names[1] = "Nick";
      names[2] = "Conrad";
      names[3] = "Diane";
      names[4] = "Rick";

      string UserInput = Console.ReadLine();

      if (UserInput == "0")
      {
         Console.WriteLine("is it the array");
      }

      else if (UserInput == "1")
      {
         Console.WriteLine(names[1]);
      }

      else if (UserInput == "2")
      {
         Console.WriteLine(names[2]);
      }

      else if (UserInput == "3")
      {
         Console.WriteLine(names[3]);
      }

      else if (UserInput == "4")
      {
          Console.WriteLine(names[4]);
      }
      else
      {
          Console.WriteLine("That was not one of the choices, please try again.");
          WelcomeMessage();
      }
   }
}
于 2017-01-09T03:15:19.130 回答