The source code to demonstrate the nested "while" loop is given below. The given program is compiled and executed successfully.
# Ruby program to demonstrate the
# nested "while" loop
cnt1=2;
cnt2=0;
while cnt1<=5
cnt2=1;
while cnt2<=10
print (cnt1*cnt2)," ";
cnt2=cnt2+1;
end
cnt1=cnt1+1;
puts;
end
In the above program, we created two variables cnt1, cnt2 that are initialized with 2, 0 respectively. Then we used nested while loop to print tables from 2 to 5.
Program/Source Code:
The source code to demonstrate the nested "while" loop is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created two variables cnt1, cnt2 that are initialized with 2, 0 respectively. Then we used nested while loop to print tables from 2 to 5.
need an explanation for this answer? contact us directly to get an explanation for this answer