Advertisement
AntonioVillanueva

pseudocódigo, escribe el valor que tendrá la variable "a"

Feb 11th, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.88 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4.     int a(25);
  5.     int i(0),j(0);
  6.     for (i=0 ;i<=4;i++){ //For i in 0 to 4 loop
  7.         for (j=0 ;j<=4;j++){ //For j in 0 to 4 loop
  8.            
  9.         cout <<"i="<<i<<" j="<<j;
  10.        
  11.             if (i==j) {a++;} //If (i=j) then a <= a + 1;
  12.                 else if (j==4){a+=2;}//elsif (j = 4) then a <= a + 2;
  13.                
  14.                 cout <<" ,a="<<a<<endl;
  15.                
  16.         }//end loop;
  17.         cout <<endl;
  18.     }//end loop;
  19.     a+=10;//a <= a + 10;
  20.     cout <<"valor de a ="<<a<<endl;
  21.    
  22.     return 0;
  23. }
  24. /*
  25.  pseudocodigo
  26.  7.
  27.  
  28. Dado el siguiente pseudocódigo, escribe el valor que tendrá la variable "a" una vez ejecutado el algoritmo.
  29. Escribe el resultado como un número entero de 2 dígitos. Ejemplo: 59
  30.  a <= 25;
  31. For i in 0 to 4 loop
  32.    For j in 0 to 4 loop
  33.       If (i=j) then a <= a + 1;
  34.          elsif (j = 4) then a <= a + 2;
  35.          end if;
  36.       end if;
  37.    end loop;
  38. end loop;
  39. a <= a + 10;
  40. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement