Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<iostream>
- using namespace std;
- int main(void){
- int dado1, dado2, acuPuntos=0, diferencia;
- for(int x=1; x<=3; x++){
- cout << endl << "Valor dado 1: ";
- cin >> dado1;
- cout << "Valor dado 2: ";
- cin >> dado2;
- if(dado1==1 && dado2==1 || dado1==6 && dado2==6){
- acuPuntos+=10;
- }
- if(dado1>dado2){
- diferencia= dado1-dado2;
- }else{
- diferencia=dado2-dado1;
- }
- if(diferencia>1 && diferencia<5){
- acuPuntos+=diferencia;
- }else{
- if(diferencia==1 || diferencia==5){
- acuPuntos=0;
- }
- }
- }
- cout << endl << "Puntos totales: " << acuPuntos << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement