22 lines
398 B
C#
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
|
|
}
|
|
}
|
|
} |