/* * Name: Your Name * Description: What does the program do * Date: The date you last edited the program */
Write a Java program that will print the first letter of your name to standard output in letters that are nine lines tall. Each big letter should be made up of a bunch of *'s. See sample output given:
******
** **
** **
** **
** **
** **
** **
** **
*****
Write a program that helps the user count his change. The program should ask how many quarters the user has, then how many dimes, then how many nickels, then how many pennies. Then the program should tell the user how much money he has, expressed in dollars. Download and Add Jar file in Dr Java (TextIO.jar)
Write a program that asks the user how many eggs he/she has and then tells the user how many dozen eggs he/she has and how many extra eggs are left over.
A gross of eggs is equal to 144 eggs. Extend your program so that it will tell the user how many gross, how many dozen, and how many left over eggs she has. For example, if the user says that she has 1342 eggs, then your program would respond with
Your number of eggs is 9 gross, 3 dozen, and 10
since 1342 is equal to 9*144 + 3*12 + 10.