从 c# 控制台输入数组有两种主要方法:使用 array.createinstance()创建一个数组,并逐一读取数组元素。使用 console.readline() 和 split()将字符串表示形式的数组分割并转换为整数。
如何从 C# 控制台输入数组
从控制台输入数组有两种主要方法:
方法 1:使用 Array.CreateInstance()
int[] numbers = Array.CreateInstance(typeof(int), 5); // 读入数组元素 for (int i = 0; i <p><strong>方法 2:使用 Console.ReadLine() 和 Split()</strong></p><pre class="brush:php;toolbar:false">// 读入数组字符串表示形式 string input = Console.ReadLine(); // 使用 Split() 将字符串分割成单个元素 string[] elements = input.Split(); // 转换元素为整数 int[] numbers = new int[elements.Length]; for (int i = 0; i <p><strong>示例:</strong></p><pre class="brush:php;toolbar:false">int[] numbers = Array.CreateInstance(typeof(int), 5); for (int i = 0; i <p>上述代码将从用户处输入 5 个整数,并将其存储在数组中。然后,代码将打印输入的数组。</p>
登录后复制
以上就是c#怎么从控制台输入数组的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:weapp,转转请注明出处:https://www.dingdanghao.com/article/484157.html