(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+ " ");
}
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.
(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+ " ");
}
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.
Last edited by JasonEdwardes; September 20th, 2019 at 02:49 PM.
Ryan15 (September 21st, 2019)
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.
Thanks for the help. How do I close this thread?
--- Update ---
Shortening the code
--- Update ---
this code doesn't print out 1