Uebungsaufgaben_ITFS_3_SS_2025/Exercises/E01_Einleitung/Exercise_1.cs
2025-02-10 08:57:36 +01:00

17 lines
458 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.IO;
using System.Collections.Generic;
namespace Exercises_C_Sharp.E01_Einleitung
{
class Exercise_1
{
public static void Start()
{
//Sorgen Sie dafür, dass in der Konsole nicht das englische Hello World!, sondern die deutsche Übersetzung Hallo Welt! ausgegeben wird.
//Code START
Console.WriteLine("Hello World!");
//Code ENDE
}
}
}