最新回答 / 杨昊杰
Form2 frm = new Form2();//实例化窗体 并定义 frm.Show(); //让新窗体显现出来 this.Hide(); //让你的窗体1隐藏你可以根据这个来写。你的program.cs 中 Application.Run(new Form1()); //默认启动...
2017-12-06
14行开始 {
if (x >= 5)
Console.WriteLine("5");
}
else
{
if (y >= 6)
Console.WriteLine("6");
else
Console.WriteLine("7");
}
if (x >= 5)
Console.WriteLine("5");
}
else
{
if (y >= 6)
Console.WriteLine("6");
else
Console.WriteLine("7");
}
2017-12-05