Exercises_C_Sharp/Exercises/E11_For/Exercise_12.cs

22 lines
398 B
C#

using System;
using System.IO;
using System.Collections.Generic;
using System.Data.Common;
using System.Dynamic;
namespace Exercises_C_Sharp.E11_For;
class Exercise_12
{
public static void Start()
{
//Geben Sie auf der Konsole alle Zahlen von 1 bis 10 aus:
for (int i = 0; i < 10; i++)
{
//Code START
//Code ENDE
}
}
}