Mer random
This commit is contained in:
parent
95d3a2be13
commit
655eca3ccf
|
@ -1,22 +1,25 @@
|
|||
using System;
|
||||
namespace Random
|
||||
{
|
||||
class Random
|
||||
class RandomHobby
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
System.Random rnd = new System.Random();
|
||||
int randomnr = rnd.Next(0, 3);
|
||||
Console.WriteLine("Hvem trenger en ny hobby? ");
|
||||
string name = Console.ReadLine();
|
||||
|
||||
if (randomnr == 0)
|
||||
{
|
||||
Console.WriteLine("Tallet ble 0");
|
||||
Console.WriteLine($"{name} har nå hobbyen å strikke");
|
||||
}else if (randomnr == 1)
|
||||
{
|
||||
Console.WriteLine("Tallet ble 1");
|
||||
Console.WriteLine($"{name} er nå glad i å tegne");
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("Tallet ble 2");
|
||||
Console.WriteLine($"{name} driver nå med Texas Hold-em");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue