完成以下要求: string strmun = "";
int mun = 0;//用来储存用户输入的数字
int max = 0;//用来储存最大的数字
do
{
Console.WriteLine("请输入一个数字");
strmun = Console.ReadLine();
if (strmun!="end")
{
try
{
mun = Convert.ToInt32(strmun);
if (max < mun)
{
max = mun;
}
}
catch
{
Console.WriteLine("你输入的数字有误,请重新输入");
}
}
else
{
Console.WriteLine("你输入了end,程序结束最大值为{0}",max);
}
} while (strmun!="end");
Console.ReadKey();
网友评论