如何检查用户是否未使用Console.ReadLine()输入数字?

时间:2019-07-17 15:49:17

标签: c#

所以我想做的是,如果某人没有输入数字,我希望他们给他们一个警告,警告他们输入的不是数字,然后给他们机会再试一次。

谢谢

using System;

 namespace ConsoleApp1
 {
     class Program
     {
         static void Main(string[] args)
         {
             //ask for a number
             Console.WriteLine("Please input a number");
             //read the number
             string num = Console.ReadLine();
             //convert the input to an integer
             int convertedNumToInt;
             int.TryParse(num, out convertedNumToInt);
             //output the number
             Console.WriteLine($"The number you selected is: {convertedNumToInt}");
         }
     }
 }

0 个答案:

没有答案