All pastes #2071640 Raw Edit

Someone

public text v1 · immutable
#2071640 ·published 2011-05-29 16:42 UTC
rendered paste body
package assi2question2;



public class Assi2question2 {

   
    public static void main(String[] args) {
       boxLine(5);
      
       
    }

     
   static void boxLine(int dash) {
    int a;
    System.out.println("+");
    for (a = 0; a < dash; a ++)
        System.out.println("-");
    System.out.println("+");
    }
}