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

26 lines
553 B
C#

using System;
using System.IO;
using System.Collections.Generic;
namespace Exercises_C_Sharp.E02_Variablen
{
class Exercise_2
{
public static void Start()
{
string val1 = "Hallo, ";
string val2 = "";
string val3 = "geht's?";
//Sorgen Sie dafür, dass unten auf der Konsole "Hallo, wie geht's?" ausgegeben wird.
//Code Start
//Code Ende
Console.Write(val1);
Console.Write(val2);
Console.Write(val3);
}
}
}