logiska operatorer c# code example
Example: logiska operatorer c#
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
Console.WriteLine("Mata in ett heltal");
string inmatat = Console.ReadLine();
int x = int.Parse(inmatat);
if( x<10)
{
Console.WriteLine("Det var mindre än 10!");
}
else
{
Console.WriteLine("Det var större eller lika med 10!");
}
Console.ReadLine();
}