在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
主要使用了Int32.Parse(),代码如下: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace InputIntFromConsole 7 { 8 class Program 9 { 10 static void Main(string[] args) 11 { 12 string inputNumber; 13 int num; 14 15 inputNumber = Console.ReadLine(); 16 17 num = Int32.Parse(inputNumber); 18 19 //注意:这里可以使用+连接字符串和数字 20 string str = "What you input is: " + num; 21 22 Console.WriteLine("What you input is: " + num); 23 } 24 } 25 } |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论