Type the programs in NOTEPAD or DOS prompt itself, for Consol Application.
Type in NETBEANS or ECLIPSE for Window Application.
Here after , I am just typing the programs only..to know more about it , refer
Type in NETBEANS or ECLIPSE for Window Application.
Here after , I am just typing the programs only..to know more about it , refer
Introduction to JAVA
before doing any JAVA Programs.
***********************************************************************************************
import java.io.*;
class loop1
{
public static void main(String args[])
{
int i=0;
while(i<=4)
{
System.out.println("Welcome to JAVA");
i++;
}
}
}
=========================================================================
Output :
Welcome to JAVA
Welcome to JAVA
Welcome to JAVA
Welcome to JAVA
Welcome to JAVA
Refar Print a message 5 times-Do While loop and Print a message 5 times-For loop also.
Refar Print a message 5 times-Do While loop and Print a message 5 times-For loop also.