while loop in java.

1.

1

2

3

4

5

6

7

8

9

10

int i=1;
while(i<=10)
{
System.out.println(i);
i++;
}
Q2. What will be output of this program.
int x=4,y,z;
y=--x;
z=x--;
System.out.println(x);
System.out.println(y);
System.out.println(z);
output:-
2
3
3

Q3. What will be output of this program.
int x=4, y=3,z;
z = x-- - y;
System.out.println(x);
System.out.println(y);
System.out.println(z);
output:-
3
3
1


Q4. What will be output of this program.
package com.company;

import java.util.Scanner;

public class Main {

public static void main(String[] args) {
double i =1.1;
while (i==1.1)
{
System.out.println(i);
i=i-0.1;
}
}
}
output:-
1.1


Comments

Popular posts from this blog

the distance between two cities (in km is input through the keyboard. write a program to convert and print this distance in meter ,feet inches and centimeter.

CREATE UNIT CONVERTER APP

write a program to check whether a triangle is valid or not, when the threeangles of the triangle are entered through the keyboard. A triangle is valid if the sumof all the three angles is equal to 180 degrees