Exercises_C_Sharp/Exercises/E12_ResizeArrays/Exercise_1.cs

23 lines
500 B
C#

using System;
using System.IO;
using System.Collections.Generic;
using System.Data.Common;
namespace Exercises_C_Sharp.E12_ResizeArray
{
class Exercise_1
{
public static void Start()
{
int[] arr = [13, 34, 234, 12, 345, 34];
//Fügen Sie dem oberen Array die Zahl 155 hinzu:
//Code START
//Code ENDE
for(int i = 0; i < arr.Length; i++)
Console.Write(arr[i] + " - ");
}
}
}