Exercises_C_Sharp/Exercises/E11_For/Exercise_1.cs

23 lines
521 B
C#

using System;
using System.IO;
using System.Collections.Generic;
using System.Data.Common;
namespace Exercises_C_Sharp.E11_For
{
class Exercise_1
{
public static void Start()
{
//Sorgen Sie dafür, dass auf der Konsole 7 ausgegeben wird:
//Code START
string s = string.Empty;
//Code ENDE
int counter = 0;
for(int i = 0; i < s.Length; i++)
counter++;
Console.WriteLine(counter);
}
}
}