我是c#的新手,对c ++更有经验,所以继承我的代码 我忘记添加一些我不认为我做过的东西,如果我做了id感谢您的回复! :)
注意:我已经阅读了类似的问题,但是不能理解答案,这个程序是个人冒险的新语言。
代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Input_Program
{
class Program
{
private static void Main()
{
Console.WriteLine("Welcome to my bool program!");
Console.WriteLine("Input a NON capital y or n when told to.");
char Y = 'y';
char N = 'n';
if()
{}
}
}
}
感谢您的回答!
答案 0 :(得分:4)
你不能有空if()
。编译器告诉你它在结束paren之前需要一个表达式。
答案 1 :(得分:3)
错误指向“if(){}”中的空白parens - 括号内必须有一个布尔表达式。