Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

Compooter

1.
ARRAY [4][4]
S1=0
S2=0
SD=0
I=0J=3
Loop while I=0 to 3
S1=S1+ARRAY[I][I]
End loop
Loop while I=0 to 3
S2=S2+ARRAY[I][J]
J=J-1
End loop
SD=S1+S2
 
2.
ARRAY[4][4]
TRANSPOSE[4][4]
Loop while I=0 to 3
Loop whileJ=0 to 3
TRANSPOSE[J][I]=ARRAY[I][J]
End loop
End loop
 
3.
ARRAY[4][4]
I=0
J=0
S=0
Loop while I=0 to 3
Loop while J=0 to 3
S=S+ARRAY[I][J]
End loop
End loop
 
4.
ARRAY[4][4]
I=0
J=0
S=0
Loop while I=0 to 3
Loop while J=0 to 3
S=S+ARRAY[J][I]
End loop
End loop
 
5.
ARRAY[4][4]
I=0
J=0
Loop while I<4
Loop while J<4
If I>0 AND I<3
If J>0
J=3
End if
End if
J=J+1
Output ARRAY[I][J]
End loop
I=I+1
End loop
 
6.
ARRAY[4][4]
I=1
J=1
Loop while I<3
Loop while J<3
Output ARRAY[I][J]
J=J+1
End loop
I=I+1
End loop

You might also like