我需要按t两次才能获得任何输出;否则程序直接进入 else 条件或给出异常处理程序错误。我在这里做错了什么?
正如你们所看到的,有两个类一个twotable
和另一个program
包含主要方法。我正在尝试使用twotable
类的调用方法获取输出。
namespace ConsoleApplication6
{
class twotable
{
public static void two()
{
int i;
int j;
for (i = 1; i <= 10;i++)
{
for (j = 2; j <= 2;j++ )
{
Console.WriteLine(i * j);
}
}
}
}
class Program
{
static void Main()
{
Console.WriteLine("Press t for two table");
char c = Convert.ToChar(Console.ReadLine());
{
char t = Convert.ToChar(Console.ReadLine());
if (c == t)
{
twotable.two();
}
else
{
Console.WriteLine("i hate u");
}
}
}
}
}