StudentInfoCard.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright (c) 2018 Muhammad M. Imtiaz
  2. // This Work is subject to the terms of the Universal Permissive License,
  3. // Version 1.0. If a copy of the licence was not distributed with this Work,
  4. // you can obtain one at <https://oss.oracle.com/licenses/upl/>.
  5. /*
  6. * Muhammad M. Imtiaz
  7. * Tuesday 4 September 2018
  8. * Prints information one would find on a typical student ID card.
  9. */
  10. class StudentInfoCard {
  11. public static void main(String[] args) {
  12. System.out.print("Name: Muhammad M. Imtiaz\t");
  13. System.out.print("Birthday: " /* redacted */ + "\t");
  14. System.out.println("Age: 16");
  15. System.out.println();
  16. System.out.print("School: " /* redacted */ + "\t");
  17. System.out.print("Grade: 11\t");
  18. System.out.println("City: " /* redacted */);
  19. System.out.println();
  20. System.out.print("Home Phone: " /* redacted */ + "\t");
  21. System.out.println("Available: " /* redacted */);
  22. System.out.println("Cell Phone: " /* redacted */);
  23. System.out.println();
  24. System.out.println("Current Math: AP Calculus A-B");
  25. System.out.println("Programming Experience: 9 years; know Python, C#, C++, C, etc.");
  26. System.out.println();
  27. 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.");
  28. }
  29. }