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

  • Home
  • SEARCH
  • 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 6932705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:44:22+00:00 2026-05-27T11:44:22+00:00

This is what I have so far: public class Numbers { // Fields public

  • 0

This is what I have so far:

public class Numbers
{
    // Fields
    public int[] numberLine;
    public int randomNumber;
    public Random randomGen;


    // Constructor : Initialise number array
    public Numbers()
    {
        numberLine = new int[6];
        randomNumber = 0;
        randomGen = new Random();
    }

    // Method : Generate 6 random numbers in a range 1 to 49
    public void populateArray()
    {
        for(int index = 0; index < numberLine.length; index++)
        {
            randomNumber = 1 + randomGen.nextInt(49);
            numberLine[index] = randomNumber;
        }
        Arrays.sort(numberLine);
    }

    ...
}

This code will create an array of six integers and populated by random numbers (1 – 49) using the for loop then sorts the elements into ascending order.

What I would like to do after that is have a method print the array elements in the following format:

** nn nn nn nn nn nn **

Normally this could be done using:

System.out.println(""** " + numberLine[0] + " " + numberLine[1]...

And so on…

However, since there is the possibility of some of the numbers having only one digit, how would one go about ensuring the proper format by leaving a black space?

So that it would look like this (example numbers):

**  7  9 27 37 39 48 **

Notice the extra space in front of the single digit elements. I’ve thought of something like:

for(int index = 0; index < numberLine.length; index++)
{
    if(numberLine[index] <= 9)
    {
        singleDigit++;

    }
    else
    {
        continue;
    }
}

that could then be used in something like:

for(int index = 0; index < numberLine.length; index++)
{
    if(index < singleDigit)
    {
        //make the single digit have a space before it
    }
}

But I can’t think of a way to make that work since an array of integers can only contain integer values so I’m probably not on the right lines with that method. It could, perhaps, be done with an array of strings but then sorting them into ascending order could get complicated.

Anyone know how I could get it to print in the required format?

Thanks in advance!

EDIT:

Something I just thought might work is to use this:

for(int index = 0; index < numberLine.length; index++)
{
    if(numberLine[index] <= 9)
    {
        singleDigit++;

    }
    else
    {
        continue;
    }
}

and then use something like:

if(singleDigit = 0)
{
    System.out.println("** " + numberLine[0] + " " + numberLine[1]
        + " " + numberLine [3] //etc
}
else
{
    if(singleDigit = 1)
    {
        System.out.println("**  " + numberLine[0] + " " +
            numberLine[1] + " " + numberLine [3]
             // etc (notice the extra space between the first ""
    }
}

And continue that all the way up to singleDigit = 6. That should work, I think, but there must be an easier/tidier way of doing it.

  • 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-27T11:44:23+00:00Added an answer on May 27, 2026 at 11:44 am
        System.out.print("** ");
        for (int i = 0; i < numberLine.length; i++) {
            if (numberLine[i] < 10) {
                System.out.print(" ");
            }
            System.out.print(numberLine[i] + " ");
        }
        System.out.print("**");
    

    Basically, you print part of the string as you go along, checking if you need to add numbers as you go.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is what I have so far - my dropbox public URL creation script
I have created this datastructure: class Event { public: Event(EVENT_TYPE type, void* pSender =
Thanks to everyone out there helping newbies like me. So far I have this:
This is what I have so far: myArray.map!{ rand(max) } Obviously, however, sometimes the
This is what I have so far: [my1@graf home]$ curl -# -o f1.flv 'http://osr.com/f1.flv'
This is what I have as far as code, it is in the first
I have this code so far which perfectly but relies on there being a
Ok, this is what I have so far - but it gives me an
I've been trying for a whlie on this, and have so far been failing
This has / may have been asked before, but, as far as I remember,

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.