MS Word中是否可以使用以下内容:
我正在使用 //Program to find the number is even or odd.
using System;
using System.Collection.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace practice
{
class test
{
static void Main (String[] args)
{
int i;
Console.Write (" Enter a number: ");
i = int.parse (Console.ReadLine()); // Where the error occurs when there is no user input.
if(i % 2 ==0)
{
Console.Write (" The number is even");
Console.Read();
}
else
{
Console.Write (" The number is odd");
Console.Read();
}
}
}
}
并尝试了step 2 here中描述的不同选项。但仍然没有得到上述。有人可以在上面链接中显示的对话框中定义可以使其工作的选项;或甚至可能吗?