18 lines
363 B
C#
18 lines
363 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exercises_C_Sharp.E05_Arrays
|
|
{
|
|
class Exercise_1
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Geben Sie alle Werte aus dem Array aus. Was fällt Ihnen auf?
|
|
int[] intArray = new int[3];
|
|
//Code START
|
|
|
|
//Code ENDE
|
|
}
|
|
}
|
|
} |