/* Starter file for week 5 lab, Program B */ public class shapestart { public static void main (String[] args) { } // end of main /** Draw a rectangle of the specified width and height @param c the character that creates the drawing @param height the height of the rectangle @param width the width of the rectangle */ public static void rectangle(char c, int height, int width) { // put statements here to display a rectangle on the screen using // character c and the width and height parameters } /** Draw a right triangle. @param c the character that creates the drawing @param size the height and width of the triangle */ public static void triangle(char c, int size) { // put statements here to display a triangle on the screen using // character c and the size parameter } /** Draw a diamond. @param c the character that creates the drawing @param size the maximum height and row length, must be odd */ public static void diamond(char c, int size) { // put statements here to display a triangle on the screen using // character c and the size parameter } } // end of program