0% found this document useful (0 votes)
5 views2 pages

Java Program: Personal Info & Schedule

AboutMe 1 of 2 / Created by Josh Trout JAVA P. 12 / 6 / 12 This Program prints out my name, my teachers name, my school, and a school team slogan to the console.

Uploaded by

api-194517233
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views2 pages

Java Program: Personal Info & Schedule

AboutMe 1 of 2 / Created by Josh Trout JAVA P. 12 / 6 / 12 This Program prints out my name, my teachers name, my school, and a school team slogan to the console.

Uploaded by

api-194517233
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

AboutMe 1 of 2

/** * Created by Josh Trout * JAVA P.5 * 12/6/12 * * This Program prints out my name, my teachers name, my school, and a school team slogan to the console. * */ public class AboutMe { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub [Link]("Josh Trout \[Link] \nSherwood High School \nGo Bowmen!"); } }

Console:
Josh Trout [Link] Sherwood High School Go Bowmen!

AboutMe 2 of 2
/* * Created by Josh Trout * JAVA P.5 * 12/6/12 * * This Program prints out the schedule of this computer class into the console. * */ public class AboutMe_2 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub [Link]("%-10s %10s %8s", "Day", "Start", "End"); [Link](); [Link]("------------------------------"); [Link]("%-10s %10s %8s ", "Monday", "1:40", "2:50"); [Link](); [Link]("%-10s %10s %8s ", "Tuesday", "1:40", "2:50"); [Link]();

[Link]("%-10s %10s %8s ", "Wednesday", "1:40", "2:50"); [Link](); [Link]("%-10s %10s %8s ", "Thursday", "1:40", "2:50"); [Link](); [Link]("%-10s %10s %8s ", "Friday", "1:40", "2:50");

} }

Console:
Day Start End -----------------------------Monday 1:40 2:50 Tuesday 1:40 2:50 Wednesday 1:40 2:50 Thursday 1:40 2:50 Friday 1:40 2:50

You might also like