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

Does google use java?

936


What are functions in java?

927


Can we force garbage collector to run ?

1041


What is meant by object oriented programming – oop?

961


What is boolean strategy?

1120


What is ternary operator?

992


What is a function easy definition?

994


What is Enum in Java?

1274


What are the advantages and disadvantages of object cloning?

1091


Does garbage collection occur in permanent generation space in jvm?

1067


Why set is used in java?

986


How do you find the absolute value?

1037


What is scope & storage allocation of global and extern variables? Explain with an example

1026


Explain inner classes ?

1113


What is the difference between a method and a function in alice?

1170