Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6700787
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:51:23+00:00 2026-05-26T06:51:23+00:00

Im a beginner in java and starting to do test driven development. I have

  • 0

Im a beginner in java and starting to do test driven development. I have a pretty basic scenario i am stuck with. I want to pass a string of numbers from 1 to x. i.e if x is 3, it will return “1, 2, 3” or if x is 5, it will return “1, 2, 3, 4, 5”.

I know that i need to use an array list and a for loop but am stuck with the syntax. Someone please help!

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T06:51:24+00:00Added an answer on May 26, 2026 at 6:51 am

    Try the following code:

    int x = 5;
    
    StringBuilder sb = new StringBuilder(); //You need import java.util.StringBuilder
    
    for (int i = 1; i <= 5; i++) {
        sb.append(i);
        if (i!=x) {
            sb.append(',');
        }
    }
    
    String result = sb.toString(); //Here will be "1,2,3,4,5"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Beginner level question Scenario: Have simple string cocantation tool, that I might expand later
I'm new to Java and I have a beginner question: NumberFormat is an abstract
I'm sure this is a beginner error... So I have a Java EE 6
I'm pretty new to Java and am following the Eclipse Total Beginner's Tutorials .
I am a Java beginner , I want to develop Android app , what
I'm just a java beginner. Do you have any tips there on how to
I'm still a beginner in java. I dont have any idea on how to
I'm Java beginner, but I thought that when using try-catch-finally I don't have to
I'm a beginner in Java programming language, and I have a problem that I
I'm a beginner in Java and I have an assignment to build P2p File

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.