在Console.Read错整数输出()

编程入门 行业动态 更新时间:2024-10-26 08:24:19
本文介绍了在Console.Read错整数输出()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我试图输出我得到从用户输入的变量,但我得到了错误的号码。

I'm trying to output a variable that I'm getting as an input from the user, but I get the wrong number.

下面是我的代码,所以远:

Here is my code so far:

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace sequence { class Program { static void Main(string[] args) { int userInput = Console.Read(); Console.WriteLine("User input is: {0}", userInput.GetType()); Console.WriteLine("User input is: {0}", userInput); } } }

输出:

Output:

3 User input type is: System.Int32 User input is: 51 Press any key to continue

如果我型4,我得到52. 5,53等。

If I type 4, I get 52. 5, 53 and so on.

推荐答案

使用到Console.ReadLine()返回字符串,你需要转换成 INT

Use Console.ReadLine() which returns string and you need to convert into int

试试这个

namespace sequence { class Program { static void Main(string[] args) { var input = Console.ReadLine(); int userInput; if (!int.TryParse(input, out userInput)) { Console.WriteLine("You have entered invalid number"); } else { Console.WriteLine("User input is: {0}", userInput.GetType()); Console.WriteLine("User input is: {0}", userInput); } Console.WriteLine("Press any key to exit"); Console.ReadKey(); } } }

更多推荐

在Console.Read错整数输出()

本文发布于:2023-11-03 13:13:31,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1555212.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:整数   Console   Read

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!