class Loop3
public static void main()
int b,s=0;
b=10;
do
S+=b;
b+=3;
}while(b<=19);
System.out.print(b+""+s);
Please give the output for this program and also show how you did it (it is called DRY RUN)
Answers
Answered by
0
Answer:
question eshi chiz h joh samaj nhi aata ye bhi nhi aa raha samaj ❌❌❌❌❌❌
Answered by
0
Answer:
output is 13
Explanation:
s+=b
s=0+10=10
b+=3
b=10+3=13
so output will be 13
Similar questions