This is a discussion post for an operating systems class As the chief engineer at a highly successful operating systems company

Drawing a half arrow (Java) Hi, can I get some help with this problem? thanks, import java.util.Scanner; public class DrawHalfArrow { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); int arrowBaseHeight = 5; int arrowBaseWidth = 2; int arrowHeadWidth = 4; System.out.println(“Enter arrow base height: “); arrowBaseHeight = scnr.nextInt(); System.out.println(“Enter arrow base width: “); arrowBaseWidth = scnr.nextInt(); System.out.println(“Enter arrow head width: “); arrowHeadWidth = scnr.nextInt(); // Draw arrow base (height = 3, width = 2) System.out.println(“**”); System.out.println(“**”); System.out.println(“**”); // Draw arrow head (width = 4) System.out.println(“****”); System.out.println(“***”); System.out.println(“**”); System.out.println(“*”); return; } }

 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"