Computer Applications
Rewrite the following do while program segment using for:
x = 10; y = 20;
do
{
x++;
y++;
} while (x<=20);
System.out.println(x * y );
Related Questions
Evaluate the expression when x is 4:
x += x++ * ++x % 2;
Give the output of the following program segment. How many times is the loop executed?
for(x=10; x>20;x++) System.out.println(x); System.out.println(x*2);
String s1 = "45.50"; String s2 = "54.50"; double d1=Double.parseDouble(s1); double d2=Double.parseDouble(s2); int x= (int)(d1+d2);
What is value of x?