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

LANGUAGE: JAVA

CHALLENGE:

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.

SOLUTION:

LANGUAGE: JAVA

CHALLENGE:

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.

SOLUTION:

public void dashedLine (int a)
{
    if (a>0)
    {
        int i;
        for (i=1;i<=a;i=i+1)
        {
            System.out.print("-");
        }
        System.out.println("");
    }
}