1Answers
The first half of the element of the c array is the a array element, the second half is the b array element, and finally the c array element is output.
Asked by: Cynthia Johnson 239 views IT
Detailed topic:
Exercise
1, complete the program
static void Main(string[] args)
int[] a = { 2, 4, 65, 23, 12, 34, 87, 43, 24, 25 };
int[] b = { 9, 6, 67, 23, 17, 34, 97, 43, 20, 45 };
int[] c = new int[20];
/* makes the first half of the element of the c array is the a array element, the second half is the b array element, and finally the c array element */
}
+3Votes
What language, C# reference