Homework 4, Create your own business card.
Short Description:
Modify the code presented in this section, to print a business card for yourself or a favorite fictional character.
Goals
When you finish this homework, you should have:
Formal Description
Using the code presented in the lecture (and here), print a business card to the screen. You can do this for yourself, or if you wish a your favorite fictional character.
class BusinessCard {
public static void main() {
System.out.println("+--------------------------------------+");
System.out.println("| |");
System.out.println("| Dan Bennett |");
System.out.println("| Associate Professor |");
System.out.println("| dbennett@pennwest.edu |");
System.out.println("| |");
System.out.println("+--------------------------------------+");
}
}
Notes:
- Please add comments identifying yourself, your class, and the problem.
- Please do not use someone like Charles III, who is styled "Charles the Third, by the Grace of God of the United Kingdom of Great Britain and Northern Ireland and of his other Realms and Territories, King, Head of the Commonwealth, Defender of the Faith", that is a little to long.
- Please do use the code provided.
Required Files
A single java file (the .java file, not the .class file)
Submission
Submit the assignment to the D2L folder Homework 4 by the due date.