26 lines
835 B
C#
26 lines
835 B
C#
namespace Exercises_C_Sharp.E18_Methods
|
|
{
|
|
class Exercise_1
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Rufen Sie die unten stehende Methode auf.
|
|
//Code START
|
|
ShowImage();
|
|
//Code ENDE
|
|
}
|
|
|
|
static void ShowImage()
|
|
{
|
|
Console.WriteLine("**#***********************#**");
|
|
Console.WriteLine("***#*********************#***");
|
|
Console.WriteLine("****#*******************#****");
|
|
Console.WriteLine("*****#********##*******#*****");
|
|
Console.WriteLine("******#******#**#*****#******");
|
|
Console.WriteLine("*******#****#****#***#*******");
|
|
Console.WriteLine("********#**#******#*#********");
|
|
Console.WriteLine("*********##********#*********");
|
|
}
|
|
|
|
}
|
|
} |