タイトルにエラーが表示されます。コードの何が問題になっていますか? 構文エラーだと思いますが、エラーが実際に何を意味するのかについての情報があまりないため、わかりません。
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
}
}
}
編集:
明確にするために、ユーザーから番号を取得して、ユーザーが入力した番号を出力するだけのコードが必要です。