Gregory Desrosiers Montreal

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Sunday, 18 November 2012

Java Programming : For Loop Example

Posted on 18:15 by Unknown
Here's an example of using a for loop in JAVA. This program uses a loop inside another to create a list of integers where the number on the left goes between 1 to 4, and the other goes between 2 to 4, making sure the second number is printed as higher than the first number and going through the cut cycle.

public class LoopingProblemNumber1
{
    public static void main(String[] args)
    {
       
        for (int x = 1; x <= 3; x++)
        {
            for (int y = x + 1; y <= 4; y++)
            {
                System.out.println(x + "\t" + y);
            }
        }
    }
}


Output:

1    2
1    3
1    4
2    3
2    4
3    4
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Posted in | No comments
Newer Post Older Post Home

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • The Quebec Ministerial Exam of College English (English Exit Exam)
    Hello, everyone. How you doing? I'm good. There is some unfortunate news for me to deliver, though I am planning to try to work myself a...
  • JAVA Program: Military Time to Real Time
    Hello, people. How you doing? I'm really busy with my college homework, but I am working so hard to pass my courses and continue in my s...
  • DOS Games to Play
    Hello, people. If there's one thing that I want to do when I have lots of money, it's to play full version DOS Games on my Windows P...
  • Computer Game Collection
    Hello, people! Before I happen to leave this very foundation of Champlain College Saint-Lambert (that's where I'm learning to get wh...
  • Java Programming : For Loop Example
    Here's an example of using a for loop in JAVA. This program uses a loop inside another to create a list of integers where the number on ...
  • Java Program : Fat Gram Calculator
    Here's another program I want to share with you guys, which is simply a program that multiplies the number of grams of fat in food by ni...
  • Best VGM Series
    Hello, guys. I want to present to you a series of YouTube imports of video game music, with some of them already recorded but in a form that...
  • JAVA Program: Lottery Class
    Here's a nother JAVA Program I want to share with you guys , which is a demonst ratio n of the Lottery class I w as as ked to design fro...
  • List of Played N64 Games
    Hello, guys. Let me introduce to you a list of N64 games I have played when I was young; the N64 was one of the two consoles I had, besides ...
  • Inequality in Canadian Women through Politics and Employment [Gender and Knowledge Essay]
    This is a research essay I did in my Gender and Knowledge class with Rachel Morris as my instructor at Champlain. It was finished on April ...

Blog Archive

  • ►  2013 (38)
    • ►  August (2)
    • ►  July (9)
    • ►  June (12)
    • ►  May (12)
    • ►  April (2)
    • ►  January (1)
  • ▼  2012 (24)
    • ►  December (13)
    • ▼  November (3)
      • Java Programming : For Loop Example
      • Java Program : Fat Gram Calculator
      • JAVA Program: Military Time to Real Time
    • ►  October (5)
    • ►  September (1)
    • ►  August (2)
Powered by Blogger.

About Me

Unknown
View my complete profile