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 7742929
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T09:24:11+00:00 2026-06-01T09:24:11+00:00

for these guidelines: Write the definition of a method dashedLine , with one parameter,

  • 0

for these guidelines:

Write the definition of a method dashedLine , with one parameter, an int .

If the parameter is negative or zero, the method does nothing. Otherwise it prints a complete line terminated by a newline to standard output consisting of dashes (hyphens) with the parameter’s value determining the number of dashes. The method returns nothing.

I wrote the following code, but it only prints one hyphen when I run in eclipse and give it a test parameter of 5. I’m thinking I may need to use a for loop instead. I think it loops within the loop therefor only giving one hyphen back.

how can I ‘remedy’ this code?

void dashedLine(int x)
    {
        int i=0;
        if(x>0) 
            {
            if(i<=x)
                {
                    i++;
                    System.out.print("-");
                }
                else
                    System.out.print("\n");

            }
    }
  • 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-06-01T09:24:14+00:00Added an answer on June 1, 2026 at 9:24 am

    But there is no loop. if is not a loop. for while and do while are the three different loops in Java. You should rather have:

    void dashedLine(int x)
    {
        for (int i=0;i<x;i++) {
            System.out.print("-");
        }
        System.out.print("\n");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

for these guidelines: Write a loop that reads positive integers from standard input and
Are there guidelines on how one should write new container which will behave like
Are there overall rules/guidelines for what makes a method thread-safe? I understand that there
Specifically, I'm wondering which of these I should write: { shared_ptr<GuiContextMenu> subMenu = items[j].subMenu.lock();
Are there any guidelines to write the optimized queries in MySQL ?
Am wondering if there are guidelines somewhere to write SQL code which is compatible
Are there any guidelines on when you should and should not write a long
I am trying to write a plugin, following the guidelines from jQuery site. I
Are there any rules of thumb or guidelines for how to write the changes
we're defining some C++ coding style guidelines based on these guidelines . Number 8

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.