1234567891011121314151617181920212223242526272829303132333435363738 |
- class StudentInfoCard {
- public static void main(String[] args) {
- System.out.print("Name: Muhammad M. Imtiaz\t");
- System.out.print("Birthday: " + "\t");
- System.out.println("Age: 16");
- System.out.println();
- System.out.print("School: " + "\t");
- System.out.print("Grade: 11\t");
- System.out.println("City: " );
- System.out.println();
- System.out.print("Home Phone: " + "\t");
- System.out.println("Available: " );
- System.out.println("Cell Phone: " );
- System.out.println();
- System.out.println("Current Math: AP Calculus A-B");
- System.out.println("Programming Experience: 9 years; know Python, C#, C++, C, etc.");
- System.out.println();
- System.out.println("I am taking this course because, as mentioned above, I have several years' worth of programming experience, and I would like to pursue a career in this field.");
- }
- }
|