-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.4_dart_301.cpp
54 lines (47 loc) · 983 Bytes
/
3.4_dart_301.cpp
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
#include <iostream>
using namespace std;
int main()
{
int runda=1,rzut=1,wynik=301,punkty,bust=301;
while (wynik !=0)
{
cout << "Runda " << runda << ", rzut " << rzut << ": Podaj ilosc punktow: ";
cin >> punkty;
if (punkty == (-1))
{
runda++;
break;
}
if (punkty < 0 or punkty > 60)
{
cout << "Niepoprawna ilosc punktow" << endl;
continue;
}
else
{
if (bust-punkty < 0)
{
cout << "Runda " << runda << ", BUST!" << endl;
cout << "Liczba twoich punktow: " << wynik << endl;
bust=wynik;
runda++;
rzut=1;
continue;
}
else
{
bust -= punkty;
}
}
if (rzut == 3)
{
cout << "Runda " << runda << ", liczba twoich punktow: " << bust << endl;
wynik=bust;
runda++;
rzut=0;
}
rzut++;
}
cout << "Gra zakonczona w rundzie " << runda-1;
return 0;
}