using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(" Überprüfung der Volljährigkeit");
Console.WriteLine();
Console.Write("Geben Sie ihr Alter ein: "); //1
int alter = Convert.ToInt32(Console.ReadLine());
Console.WriteLine();
if (alter < 18) //2
{
Console.WriteLine("Du bist nicht volljährig!");
}
else //3
{
Console.WriteLine("Du bist volljährig!");
}
Console.Read();
}
}
}
by alex & zitti
|