
Explanation of Solution
Program code:
//Program named as myLife
public class myLife
{
//Main method for the StarFigures class
public static void main(String[] args)
{
//call the static methods
toParents();
toFriends();
toBrother();
}
private static void toParents()
{
//print the statements
System.out.println("Hi mom and dad,");
//call the static methods
myClass();
myFriends();
money();
//print new line
System.out.println();
}
private static void toFriends()
{
//print the statements
System.out.println("hi besty,");
System.out.println("i hope i will find my life partner here.");
//call the static methods
myClass();
myHobbies();
//print new line
System.out.println();
}
private static void toBrother()
{
//print the statements
System.out.println("Hi, bro");
//call the static methods
myHobbies();
myFriends();
money();
//print new line
System.out.println();
}
//method to tell about class
private static void myClass()
{
//print the stars
System...

Want to see the full answer?
Check out a sample textbook solution
Chapter 1 Solutions
Building Java Programs: A Back to Basics Approach (4th Edition)
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





