Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- /**
- */
- public class displaybox
- {
- public static void main(String[] args){
- int length, width;
- Scanner input = new Scanner(System.in);
- System.out.print("enter length: ");
- length = input.nextInt();
- System.out.print("enter width: ");
- width = input.nextInt();
- drawBar(length, width);
- }
- public static void drawBar(int length, int width){
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment