Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Program to output as below formate:
1
2 3
4 5 6
7 8 9 10

Answer Posted / jyoti

public class format {
public static void main(String args[])
{
int k=1;
for(int i=0;i<5;i++)
{
for(int j=0;j<i;j++)
{
System.out.print(k++ + " ");
}
System.out.print("\n");
}
}
}

Is This Answer Correct ?    15 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Are arrays dynamic in java?

1043


Can we declare array without size in java?

1042


What is equlas() and hashcode() contract in java? Where does it used?

1139


what is synchronization and why is it important? : Java thread

1099


Is map ordered in java?

954


Write java program to reverse string without using api?

1071


What data structures are used to perform recursion?

1060


What are nested classes in java?

1125


Explain the difference between throw and throws in java?

1011


What is the flag in java?

1068


what is a green thread? : Java thread

1027


Can there be an abstract method without an abstract class?

964


Is finalize() similar to a destructor?

1026


What is __ init __ functions?

1133


What is e java?

1109