Advertisement
any15015

ejDePracticaCICLOS.2

Sep 8th, 2023
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main(void){
  5. int dado1, dado2, acuPuntos=0, diferencia;
  6. for(int x=1; x<=3; x++){
  7.     cout << endl << "Valor dado 1: ";
  8.     cin >> dado1;
  9.     cout << "Valor dado 2: ";
  10.     cin >> dado2;
  11.     if(dado1==1 && dado2==1 || dado1==6 && dado2==6){
  12.         acuPuntos+=10;
  13.     }
  14.     if(dado1>dado2){
  15.         diferencia= dado1-dado2;
  16.     }else{
  17.     diferencia=dado2-dado1;
  18.     }
  19.     if(diferencia>1 && diferencia<5){
  20.         acuPuntos+=diferencia;
  21.     }else{
  22.         if(diferencia==1 || diferencia==5){
  23.             acuPuntos=0;
  24.         }
  25.     }
  26. }
  27. cout << endl << "Puntos totales: " << acuPuntos << endl;
  28.     return 0;
  29. }
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement