所以我想做的是,如果某人没有输入数字,我希望他们给他们一个警告,警告他们输入的不是数字,然后给他们机会再试一次。
谢谢
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}");
}
}
}