我在标题中收到错误,代码有什么问题?我认为这是一个语法错误,但我不确定,因为我没有太多关于错误实际含义的信息。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please Input Number of Rows you want to make in your pyrimid: ");
int num = int.Parse(Console.Read()); // error here
Console.WriteLine(num);// Just to check if it is getting the right number
Console.Read();//This is Here just so the console window doesn't close when the program runs
}
}
}
编辑:
只是为了澄清,我希望代码只是从用户那里获取一个数字,然后打印用户输入的数字。