class multiple3 {
public static void main(String args[]) {
int i=300;
while(i>=100)
{
i = 1-3;
i--;
System.out.println(i);
}
}
}
Chat with our AI personalities
Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.
One way to do this is to convert the number to a String, then use the corresponding String method to find out the length of the String.
The Java console is a display of output sent by a Java program. This is similar to the MS DOS operating system.To print to the console, a programmer will type "println(text);" or "print(text);" depending is the programmer wants to make a new line after the text(println) or not(print).
write a program draw circle and ellipse by using oval methods in java
To print lucky numbers in java, you must give the following program: class example { static public void main(String[] args) { System.out.println("Lucky number is your favourite number which is your DOB"); } }