18
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
//Invoer
8
string Tekst = "";
9
10
//Verwerken
11
for (int Getal = 1; Getal <= 10; Getal++) {
12
Tekst += Getal + " - ";
13
}
14
15
//Uitvoer
16
Console.WriteLine(Tekst);
17
}
18
}
Cached Result
De geboortedatum mag niet in de toekomst liggen!