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();
}
} 展开
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();
}
} 展开
展开全部
在一个表单中加入一个文本框,输入值。
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("谢谢你!");
}
}
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()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询