1234567891011121314151617181920212223242526272829303132333435363738 |
- // Copyright (c) 2018 Muhammad M. Imtiaz
- // This Work is subject to the terms of the Universal Permissive License,
- // Version 1.0. If a copy of the licence was not distributed with this Work,
- // you can obtain one at <https://oss.oracle.com/licenses/upl/>.
- /*
- * Muhammad M. Imtiaz
- * Tuesday 4 September 2018
- * Prints information one would find on a typical student ID card.
- */
- class StudentInfoCard {
- public static void main(String[] args) {
- System.out.print("Name: Muhammad M. Imtiaz\t");
- System.out.print("Birthday: " /* redacted */ + "\t");
- System.out.println("Age: 16");
- System.out.println();
- System.out.print("School: " /* redacted */ + "\t");
- System.out.print("Grade: 11\t");
- System.out.println("City: " /* redacted */);
- System.out.println();
- System.out.print("Home Phone: " /* redacted */ + "\t");
- System.out.println("Available: " /* redacted */);
- System.out.println("Cell Phone: " /* redacted */);
- 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.");
- }
- }
|