write a method called makestars. the method receives an int parameter that is guaranteed not to be negative. the method returns a string whose length equals the parameter and contains no characters other than asterisks. thus, makestars(8) will return ******** (8 asterisks).