21 lines
393 B
C#
21 lines
393 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exercises_C_Sharp.E04_Konsole
|
|
{
|
|
class Exercise_1
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Geben Sie auf der Konsole "Hallo, wie geht es Ihnen?" aus.
|
|
string s = "irgendwas?";
|
|
|
|
//Code START
|
|
|
|
//Code ENDE
|
|
|
|
Console.WriteLine(s);
|
|
}
|
|
}
|
|
} |