/* Starter file for week 5 lab, Program B */ public class shapestart { public static void main (String[] args) { } // end of main /** Draw a rectangle using the character c of the specified width and height */ 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 using the character c of the specified size */ 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 using the character c of the specified size */ 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