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.
***********************************************************************************************
Program to print a pattern as shown below :
*
* *
* * *
* * * *
* * * * *
***********************************************************************************************
import java.io.*;
public class nestedloop
{
public static void main(String args[])
{
int i,j;
for(i=0;i<5;i++)
{
for(j=0;j<i;j++)
{
System.out.print("*");
System.out.print(" ");
}
System.out.println("");
}
}
}
=========================================================================
Output :
Output :
No comments:
Post a Comment