将字符串转化为数字(Convert和Parse的用法)
Posted HepburnXiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将字符串转化为数字(Convert和Parse的用法)相关的知识,希望对你有一定的参考价值。
字符串必须是数字,不要超过转换成目标数字类型的范围。超过的话系统也会报错(溢出)。
static void Main(string[] args)
{
string s;
int i;
Console.WriteLine("please enter a number");
s = Console.ReadLine();
i = Int32.Parse(s);
Console.WriteLine(i + 100);
Console.WriteLine();
Console.WriteLine("Enter another a number");
s = Console.ReadLine();
i = Convert.ToInt32(s);
Console.WriteLine(i + 100);
Console.ReadKey();
}
以上是关于将字符串转化为数字(Convert和Parse的用法)的主要内容,如果未能解决你的问题,请参考以下文章