Lab1 - Part one

Wednesday, June 18, 2008

//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
//CS 142 at Brigham young University
//This code is not intended to copy or use
//This code can be used to learn the programming aspects
//~Lost
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
public class lab1
{
public static void main (String agrs[])
{
/* '\t' gives a tab to the new line and '\n' gives a new line
* Use those in combination of spaces if needed to give necessary format.
*/
System.out.println("\t\t\tBasic BYU Trivia\n");
System.out.println("\tQuestion\t\t\t\tAnswers\n");
System.out.println("What is the Original Name of BYU?\tBrigham Young Acadamy");

/*
* part one of this lab is not that hard it is just simple formatting
* I think this much help will help out the first part.
*/
}
}

0 comments: