Assignemnt #2 and Printing #5 (M.C. Hammer)

Code

      /// Name: Amir Salehi
    /// Period: 7
    /// Program name: First Program
    /// File name: GoodSecondProgram.java
    /// Date: Finished 9/8/2015
    
    public class GoodSecondProgram
{
	public static void main( String[] args )
	{
		System.out.println( "You can't touch this" );
		System.out.println( "My, my, my, my music hits me so hard" );
		System.out.println( "Makes me say, Oh my Lord," );
		System.out.println( "With a mind to rhyme and two hype feet." );
		System.out.println( "It feels good, when you know you're down" );
		System.out.println( "A super dope homeboy from the Oaktown" );
		System.out.println( "And I'm known as such" );
        System.out.println( "And this is a beat, uh, you can't touch" );
	}
}
    

Picture of the output

Assignment 5

Back to Homepage