Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main(){
- int a(25);
- int i(0),j(0);
- for (i=0 ;i<=4;i++){ //For i in 0 to 4 loop
- for (j=0 ;j<=4;j++){ //For j in 0 to 4 loop
- cout <<"i="<<i<<" j="<<j;
- if (i==j) {a++;} //If (i=j) then a <= a + 1;
- else if (j==4){a+=2;}//elsif (j = 4) then a <= a + 2;
- cout <<" ,a="<<a<<endl;
- }//end loop;
- cout <<endl;
- }//end loop;
- a+=10;//a <= a + 10;
- cout <<"valor de a ="<<a<<endl;
- return 0;
- }
- /*
- pseudocodigo
- 7.
- Dado el siguiente pseudocódigo, escribe el valor que tendrá la variable "a" una vez ejecutado el algoritmo.
- Escribe el resultado como un número entero de 2 dígitos. Ejemplo: 59
- a <= 25;
- For i in 0 to 4 loop
- For j in 0 to 4 loop
- If (i=j) then a <= a + 1;
- elsif (j = 4) then a <= a + 2;
- end if;
- end if;
- end loop;
- end loop;
- a <= a + 10;
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement