Question: Rewrite the following segment code using FOR loop. jumlah = 0; nombor = 100; while (nombor= < 200) {jumlah = jumlah + nombor; nombor +=
Rewrite the following segment code using FOR loop.
jumlah = 0;
nombor = 100;
while (nombor=< 200)
{jumlah = jumlah + nombor;
nombor += 10;
}
cout << Jumlah nombor ialah << jumlah;
answer in c++
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
