• Welcome, Guest. Please login.
 
March 28, 2024, 06:56:39 PM

News:

Anyone found direct-linking to our files will be perma-banned. Click here for more info.


SPAM THREAD!

Started by Deleted User, March 20, 2006, 11:58:47 PM

Previous topic - Next topic

UHMEEEEBA


Fusion

I side with Neon on this one.

Robert the small

You guys need to keep up with Silly MUGEN drama.  Its quite fun.

UHMEEEEBA


Fusion


Jesuszilla



Just try to keep things peaceful.

Daimon


UHMEEEEBA


Fusion


UHMEEEEBA

... you didn't get that? Man, maybe TMF is right with the script kiddie complaint...

UHMEEEEBA

Yeah... it's one thing if she does that in her own free time, but mass mailing a link like that isn't good...

Jesuszilla

Quote from: EMAG EHT TSOL UOY on September 29, 2007, 12:13:16 AM
Of couse I'm right tard, go back to learning Java so you can code something useful.

Speaking of Mugen tardness I'm not even safe at /fate/!
Amazingly enough, they share similar views, so I posted.


Just try to keep things peaceful.

UHMEEEEBA

Oh, and on the subject.

public class Lawl {

    public static void main( String[] args ) {

    System.out.print( "TMF is a whore.");
    System.out.println( "Happy now dunderhead?" );
    }

}

Robert the small

Quote from: EMAG EHT TSOL UOY on September 29, 2007, 12:13:16 AM
Of couse I'm right tard, go back to learning Java so you can code something useful.
Java is bloated like a woman on PMS :(

UHMEEEEBA

import java.util.Scanner;
import java.lang.Math;

public class Pyramid {

    public static void main( String args[] ) {

   double base;             
   double height;
        double slantHeight;             
   double surfaceArea; 

        Scanner input = new Scanner(System.in);

        System.out.println( "Enter pyramid height: " );
        height = input.nextDouble();
        System.out.println( "Enter pyramid base: " );
        base = input.nextDouble();

        slantHeight = Math.sqrt( Math.pow( ( 0.5 * base ), 2 ) + Math.pow( height, 2) );
        surfaceArea = ( 2 * base * slantHeight ) + Math.pow( base, 2);

        System.out.println( "The area of a pyramid with height " +
        height + " base " + base + " is:" );
        System.out.print( surfaceArea );
        System.out.println();
    }
}

Do I win?