19 lines
400 B
C#
19 lines
400 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using System.Data.Common;
|
|
|
|
namespace Exercises_C_Sharp.E11_For;
|
|
|
|
class Exercise_6
|
|
{
|
|
public static void Start()
|
|
{
|
|
int[] intArray = [12, 45, 56, 23, 56, 345, 56, 56];
|
|
|
|
//Geben Sie alle Zahlen im obrigen Array mit Hilfe der For-Schleife auf der Konsole aus
|
|
//Code START
|
|
|
|
//Code ENDE
|
|
}
|
|
} |