Computer Science, asked by arunimabanerjee2005, 4 months ago

1. State the final value of ‘q’ at the end of the following program segment.
int m, n, p, q = 0;
for(m=2;m<=3;++m)
{
for(n=1;n<=m;++n)
{
p=m+n-1;
if(p%3==0)
q+=p;
else
q+=p+4;
}
}​

Answers

Answered by Sujalkumartarai
1

instead of q + = p you write q + = p/q.

Similar questions