Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 5 of 5

Thread: Question on math's loop sequence

  1. #1
    Junior Member
    Join Date
    Sep 2019
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Question on math's loop sequence

    (b) 1 3 6 10 15 21
    I want my loop to have this output.
    Is there an easier way than my current code?
    for(int i=1;i<=6;i++)
    {
    int d=i*(i+1)/2;
    System.out.print(d+ " ");
    }

  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Question on math's loop sequence

    What do you mean by easier?
    One shortening of the code would be to remove the d variable and print the value of the expression.
    If you don't understand my answer, don't ignore it, ask a question.

  3. #3
    Junior Member
    Join Date
    Sep 2019
    Posts
    4
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default Re: Question on math's loop sequence

    Quote Originally Posted by Ryan15 View Post
    (b) 1 3 6 10 15 21
    I want my loop to have this output.
    Is there an easier way than my current code?
    for(int i=1;i<=6;i++)
    {
    int d=i*(i+1)/2;
    System.out.print(d+ " ");
    }
    here a different way to get the same results( looks more easy to understand)
    [code]
    int i =1, total = 1;
    for(int x = 1; x<6; x++){
    i++
    total = total + i;
    System.out.println(total);
    }

    [code]
    Last edited by JasonEdwardes; September 20th, 2019 at 02:49 PM.

  4. The Following User Says Thank You to JasonEdwardes For This Useful Post:

    Ryan15 (September 21st, 2019)

  5. #4
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Question on math's loop sequence

    Please edit your post and wrap your code with code tags:

    [code]
    **YOUR CODE GOES HERE**
    [/code]

    to get highlighting and preserve formatting.
    If you don't understand my answer, don't ignore it, ask a question.

  6. #5
    Junior Member
    Join Date
    Sep 2019
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: Question on math's loop sequence

    Thanks for the help. How do I close this thread?

    --- Update ---

    Shortening the code

    --- Update ---

    this code doesn't print out 1

Similar Threads

  1. [SOLVED] Need help with YES/NO Loop in Fibonacci Sequence
    By LooneyTunerIan in forum Java Theory & Questions
    Replies: 11
    Last Post: March 24th, 2014, 03:06 PM
  2. What is best loop sequence?
    By javaDruide in forum What's Wrong With My Code?
    Replies: 9
    Last Post: January 15th, 2014, 03:01 PM
  3. While Loop Question?
    By JAVAHELPP in forum What's Wrong With My Code?
    Replies: 3
    Last Post: March 14th, 2013, 05:24 AM
  4. another for loop question
    By gsp217 in forum Java Theory & Questions
    Replies: 3
    Last Post: February 23rd, 2013, 10:17 AM
  5. [SOLVED] While loop question
    By maple1100 in forum What's Wrong With My Code?
    Replies: 9
    Last Post: December 26th, 2012, 12:42 AM