第1个回答 2015-08-14
要通过类型转换 : int num= Convert.ToInt32(Console.ReadLine());
Convert 将一个基本数据类型转化为另一基本数据类型。
支持的转化类型:受支持的基类型是Boolean、Char、SByte、Byte、Int16、Int32、Int64、UInt16、UInt32、UInt64、Single、Double、Decimal、DateTime 和 String。
第2个回答 2010-03-22
所有界面上的输入输出都是string 型的,使用屏幕输入的时候要写相当的转换
例如int i = int.parse(console.readline())
这样需要加上try...catch...来确保输入不是数字时程序不会挂掉
第3个回答 2010-03-23
呜呜~~~~~只要是你输入的都是字符串!!!!
想要其他类型的可以做类型转换。
addnew:
try
{
//这里写可能出现异常的代码
}
catch(Exception ee)
{
//如程序异常将走到这里。
}
finally
{
//无论程序是否出现异常都将最终走这里
}
第4个回答 2010-03-22
int i = int.parse(console.readline())