Sign in
or
Register
Courses
Textbook
Compiler
Contests
Topics
Courses
C#。 數據存儲和處理
阵列。基本
Module:
阵列。基本
Problem
9
/9
使用数组元素的其他方法
Theory
Click to read/hide
处理数组元素的其他方法
除了<代码循环> ,也可以使用
foreach
- 它遍历数组的所有元素,而不使用索引。有时它会很方便,例如,在屏幕上显示一个数组。
foreach(A 中的整数 i) { Console.Write(i + "");
这就是您如何从键盘读取一个数组,数组的元素写在一行上并用空格分隔。
使用 System.Linq; // 您需要编写此指令才能使用与处理数组相关的函数 ... 字符串文本 = Console.ReadLine(); int[] array = text.Split(' ').Select(int.Parse).ToArray(); // Split() 将字符串拆分为单独的对象(在本例中为空间划分) // Select(int.Parse) 将每个对象(字符串)转换为一个 int // ToArray() 将所有接收到的对象写入数组
Problem
输入是数字
N
- 数组元素的数量。
然后有两个
N
整数数组: 第一个数组的元素每行一个, 第二个数组的元素都写在一行上,用空格分隔。
填写两个数组并在一行中以空格分隔输出它们的元素: 第一个数组在第一行, 第二个数组在第二行。
例子
<头>
#
输入
输出
东西> <正文>
1
3
1
2
3
4 5 6
1 2 3
4 5 6
表>
1000
ms
256 Mb
Rules for program design and list of errors in automatic problem checking
Teacher commentary