读取用户的两个输入
我想让用户仅使用 Console.ReadLine()
的一个语句输入两个不同的值。 更具体地说,我不想使用两个不同的 ReadLine()
方法来声明两个不同的变量 - 我想让用户使用一个 ReadLine()
同时输入两个变量进一步加工的方法。
I would like to get the user enters two different values using only ONE statement of Console.ReadLine()
.
More specifically, instead of using two different variables declarations with two different ReadLine()
method - I want to let the user enters two variables at the same time using one ReadLine()
method for further processing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西吗?
在此示例中,空格分隔参数。如果您愿意,可以使用
、
或;
作为分隔符。Something like this?
In this example, space delimits the arguments. You can use
,
or;
as a delimiter, if you would like to.