C#怎么把下面的控制台程序改成在窗体实现啊 帮忙解下 谢谢

stringuserInput;while(true){try{Console.Write("请输入一个0--5之间的数字(或按回车键退出)>:");userInput=... string userInput;
while (true)
{
try
{
Console.Write("请输入一个0--5之间的数字 (或按回车键退出) >: ");
userInput = Console.ReadLine();
if (userInput == "")
break; // retrurn;
int index = Convert.ToInt32(userInput);
if (index < 0 || index > 5)
{
throw new IndexOutOfRangeException("但你输入的是:" + userInput);
}
Console.WriteLine("你输入的是:" + index);
}
catch (IndexOutOfRangeException ex)
{
Console.WriteLine("异常: 输入的数字必须在0--5之间," + ex.Message);
}
catch (Exception ex)
{
Console.WriteLine("发生一个异常:{0} " + ex.Message);
}
catch
{
Console.WriteLine("发生了其他的异常!");
}
finally
{
Console.WriteLine("谢谢你!");
Console.WriteLine();
}
}
展开
 我来答
luck_zeng
2011-03-30 · TA获得超过196个赞
知道小有建树答主
回答量:345
采纳率:0%
帮助的人:189万
展开全部
在一个表单中加入一个文本框,输入值。
string userInput;
while (true)
{
try
{
userInput = txtbox1.Text;
if (userInput == "")
break; // retrurn;
int index = Convert.ToInt32(userInput);
if (index < 0 || index > 5)
{
MessageBox.Show("但你输入的是:" + userInput.ToString());
}
MessageBox.Show("你输入的是:" + index.ToString());
}
catch (IndexOutOfRangeException ex)
{
MessageBox.Show("异常: 输入的数字必须在0--5之间," + ex.Message);
}
catch (Exception ex)
{
MessageBox.Show("发生一个异常:{0} " + ex.Message);
}
catch
{
MessageBox.Show("发生了其他的异常!");
}
finally
{
MessageBox.Show("谢谢你!");
}
}
匿名用户
2011-03-30
展开全部
使用TextBox和MessageBox.Show()
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式