我需要帮助来理解这个简单的 C# 控制台应用程序可能有什么问题。我想做的是通过类执行各种算术运算。这是程序。
static void Main(string[] args)
{
Console.Clear();
Arithmetic a1 = new Arithmetic();
Console.Write("\nEnter the value for first variable\n");
a1.obj1 = Console.Read();
Console.Write("\nEnter the value for the second variable\n");
a1.obj2 = Console.Read();
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
Apparantley,程序构建和编译正常,但在运行时它采用第一个整数的值,而不采用下一个整数的值,它在显示屏上写入最后一行(按任意键退出)