-
Notifications
You must be signed in to change notification settings - Fork 0
/
program.cs
65 lines (61 loc) · 2.42 KB
/
program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System;
namespace Helloworld
{
class Program
{
static void Main(string[] args)
{
string ans = "";
int count = 0;
int count1 = 0;
Console.WriteLine("Oyuna Hoş Geldin");
while (ans != "NO")
{
Console.WriteLine("Birini Seç:\n1->TAŞ\n2->KAĞIT\n3->MAKAS");
string[] choices = new string[3] { "TAŞ", "KAĞIT", "MAKAS" };
Random rnd = new Random();
int n = rnd.Next(0, 3);
Console.WriteLine("Seçimin:");
string user = Console.ReadLine().ToUpper();
Console.WriteLine("Bilgisayarın:" + choices[n]);
//Algoritma
//Örnek Eğer Oyuncu Taşı seçtiyse ve bilgisayar makası seçtiyse console'a "Tebrikler Sen Kazandın" Yazır
if (user == "TAŞ" && choices[n] == "MAKAS")
{
Console.WriteLine("Tebrikler Sen Kazandın");
count += 1;
}
else if (user == "TAŞ" && choices[n] == "KAĞIT")
{
Console.WriteLine("Bilgisayar Kazandı");
count1 += 1;
}
else if (user == "KAĞIT" && choices[n] == "TAŞ")
{
Console.WriteLine("Tebrikler Sen Kazandın");
count += 1;
}
else if (user == "KAĞIT" && choices[n] == "MAKAS")
{
Console.WriteLine("Bilgisayar Kazandı");
count1 += 1;
}
else if (user == "MAKAS" && choices[n] == "TAŞ")
{
Console.WriteLine("Bilgisayar Kazandı");
count1 += 1;
}
else if (user == "MAKAS" && choices[n] == "KAĞIT")
{
Console.WriteLine("Tebrikler Sen Kazandın");
count += 1;
}
Console.WriteLine("Tekrar Oynamak İster misin?(EVET/HAYIR):");
ans = Console.ReadLine().ToUpper();
Console.WriteLine("---------------------------------------");
}
Console.WriteLine("Tebrikler Sen Kazandın " + count + " times");
Console.WriteLine("Bilgisayar Kazandı " + count1 + " times");
}
}
}