Source:
public class profile {
public static void main (String[] args)
{
String name = "Justin Arbuckle";
System.out.println(name);
System.out.println("I am the new CS Junior Undergrad Rep");
System.out.println("I am a first year Computer Science student");
System.out.println("I enjoy candy(donations are always accepted)");
System.out.print("I also enjoy Yo-Yo's and juggling, I also ");
System.out.println("like PC gaming.");
System.out.println("I dislike mean people and working when I don't have to.");
System.out.println("Anything else, please don't refrain from emailing me or just comming up and asking");
}
}
Output:
Justin Arbuckle
I am the new CS Junior Undergrad Rep
I am a first year Computer Science student
I enjoy candy(donations are always accepted)
I also enjoy Yo-Yo's and juggling, I also like PC gaming.
I dislike mean people and working when I don't have to.
Anything else, please don't refrain from emailing me or just comming up and asking






