Napisz program GRA W KOŚCI w której będzie :
- 2 graczy
- 5 kości w jednym rzucie
- i wygrawa ten co ma większą sumę oczek .
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
#include <cstdlib>
#include <time.h>
using namespace std;
int main(int argc, char *argv[])
{
cout << "1 gracz wylosowal: ";
srand(time(0));
int los = 0;
int x;
int suma1 = 0;
int suma2 = 0;
for (x = 0; x < 5; x++)
{
los = (rand()%(6-1+1))+1;
suma1+=los;
cout << los << ',';
}
cout << "\n1 gracz wylosowal: ";
for (x = 0; x < 5; x++)
{
los = (rand()%(6-1+1))+1;
suma2+=los;
cout << los << ',';
}
cout << "\nGracz 1 punktow: " << suma1;
cout << "\nGracz 2 punktow: " << suma2;
if (suma1 > suma2)
cout << "\nWygal gracz 1.\n";
else
cout << "\nWygal gracz 2.\n";
return 0;
}