write pseudo code the square of sum of all odd numbers between 100 to 200.
Answers
Answered by
0
Answer:
Main()
Begin
Read:n=200;
Setsum=0;
Fori=100to200by1do
{
Ifi%2==0
Setsum=sum+1;
endif;
}
Endfor
print:sum
End
Explanation:
Similar questions