res = Convert.ToInt32(val);
string val; val = Console.ReadLine();
int res; res = Convert.ToInt32(val);
using System; using System.Collections.Generic; class Demo { static void Main() { string val; int res; Console.WriteLine("Input from user: "); val = Console.ReadLine(); // convert to integer res = Convert.ToInt32(val); // display the line Console.WriteLine("Input = {0}", res); } }
Input from user: Input = 0
えええええ
以上がC#で入力を整数として読み取る方法は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。