Exercises_C_Sharp/Exercises/E11_For/Exercise_2.cs

21 lines
471 B
C#

using System;
using System.IO;
using System.Collections.Generic;
using System.Data.Common;
namespace Exercises_C_Sharp.E11_For
{
class Exercise_2
{
public static void Start()
{
//Sorgen Sie dafür, dass auf der Konsole "Hallo" ausgegeben wird:
//Code START
string s = string.Empty;
//Code ENDE
for(int i = s.Length -1; i > 0; i--)
Console.Write(s[i]);
}
}
}