MXS Twitter

I've heard conversation coming out of animal pens that is more intelligent than what is going on in here.
Boblob801
Posts: 3998
Joined: Mon Nov 16, 2009 4:59 am
Team: <3 Andy
Location: New Zealand
Contact:

Re: MXS Twitter

Post by Boblob801 »

Yeah well,someones stole a car and crashed it ooooooh
Hi
JT43
Crushed Dissenter
Posts: 3245
Joined: Thu Feb 16, 2012 8:33 pm
Team: MotardMatt220
Location: KTM57

Re: MXS Twitter

Post by JT43 »

Boblob801 wrote:Yeah well,someones stole a car and crashed it ooooooh
Was it you?
jlv wrote: Motardmatt220 is a crock of shit
KTM57 wrote: August is 13 years old and thinks he's hot shit because he's a lot younger than everyone else
Boblob801
Posts: 3998
Joined: Mon Nov 16, 2009 4:59 am
Team: <3 Andy
Location: New Zealand
Contact:

Re: MXS Twitter

Post by Boblob801 »

JT43 wrote:
Boblob801 wrote:Yeah well,someones stole a car and crashed it ooooooh
Was it you?
Dude shhhh this isn't a joke. I'll get put away for years. On another note one guy died today in a quad bike crash. Shit's going down this week.
Hi
JT43
Crushed Dissenter
Posts: 3245
Joined: Thu Feb 16, 2012 8:33 pm
Team: MotardMatt220
Location: KTM57

Re: MXS Twitter

Post by JT43 »

The weekend hasn't even started yet :|
jlv wrote: Motardmatt220 is a crock of shit
KTM57 wrote: August is 13 years old and thinks he's hot shit because he's a lot younger than everyone else
dylan22
Posts: 2669
Joined: Wed Apr 21, 2010 7:46 am
Location: South Australia

Re: MXS Twitter

Post by dylan22 »

A 8 year old girl died today at the Adelaide show. The ride fucked up and threw her off.
Image
KTM880
Posts: 1056
Joined: Sun Aug 28, 2011 10:09 am
Location: QLD, Straya
Contact:

Re: MXS Twitter

Post by KTM880 »

dylan22 wrote:A 8 year old girl died today at the Adelaide show. The ride fucked up and threw her off.
Yeah saw that earlier today how the fuck does that even happen
MX181 wrote:one of them bop it toys from when I was a child that taught young girls how not to give a hand job?
Scotty226
Posts: 2225
Joined: Wed Feb 29, 2012 7:28 am
Team: Crisp Graphics
Location: Sydney

Re: MXS Twitter

Post by Scotty226 »

Dunno but i wanted to go on that ride. Guess not anymore :(
Image
0 | 1 | 0 | 4
2014 Loretta Lynns 250 Pro Sport 2nd
Pumaxcs
Posts: 13209
Joined: Sat Dec 15, 2007 11:50 pm
Team: Kyle/Luiz
Location: Western, Kentucky

Re: MXS Twitter

Post by Pumaxcs »

Happy Birthday other Swedish Fred.
Image
Everytime you post something stupid, a baby gets punched in the face. Please be smart, for the children.
MXS Cares
jlv wrote: Thu Nov 05, 2020 1:09 am Pumaxcs would know better than I do.
Dumont#11
Posts: 128
Joined: Wed Feb 26, 2014 9:30 pm
Team: Privateer
Location: UK

Re: MXS Twitter

Post by Dumont#11 »

dylan22 wrote:A 8 year old girl died today at the Adelaide show. The ride fucked up and threw her off.
Saw that on Facebook, I didn't belive it at first.
New Track Releases:
Dumont's Compound (To come.. Much better than my old tracks.)
tyskorn
Posts: 6491
Joined: Sun Jan 11, 2009 5:52 pm
Team: Adept MX Graphics
Location: Utah, USA

Re: MXS Twitter

Post by tyskorn »

Image
Andy_Hack
Posts: 2449
Joined: Mon Nov 01, 2010 11:47 am
Team: SplitFire
Location: Germany/Bavaria
Contact:

Re: MXS Twitter

Post by Andy_Hack »

tyskorn wrote:Image
Was just about to post this... -.- But well, thats what i call a page rape :lol:
*fancy signature*
d4u5d6u7 wrote:good staff, nice skins, like
Robert196
Posts: 3408
Joined: Fri Sep 23, 2011 2:50 pm
Location: 192.168. 1.1

Re: MXS Twitter

Post by Robert196 »

My second week of AP Computer Science and I wrote a java program that calculates scores. Probably easy to do for most of you, but I thought I should post just because it's extremely satisfying to finally get something right.

Code: Select all

import java.io.*;
import static java.lang.System.*;

import java.util.Scanner;

class Main{


     public static void main (String str[]) throws IOException {

         
            Scanner scan = new Scanner (System.in);
            
            System.out.println("Please enter your test grades.");
            int test1 = scan.nextInt();
            int test2 = scan.nextInt();
            
            double testavg = (double)(test1 + (double)test2) / 2;
            
            System.out.println("Please enter your quiz grades.");
            int quiz1 = scan.nextInt();
            int quiz2 = scan.nextInt();
            int quiz3 = scan.nextInt();
            
            double quizavg = (double)(quiz1 + (double)quiz2 + (double)quiz3) / 3;
            
            System.out.println("Please enter your homework average.");
            double hw = scan.nextDouble();
            
            double classavg = (0.5 * testavg) + (0.3 * quizavg) + (0.2 * hw);
            
            System.out.println("Test Average: " + (double)testavg);
            System.out.println("Quiz Average: " + (double)quizavg);
            System.out.println("Final Grade: " + (double)classavg);

          
          
     }

}
Definitely wont get into programming when I leave school, but it's cool to know some basics.

idc that you dont care, keep scrolling
| 2013 MotoOption Supercross 250 Eastside Champion | #turnbarcrew |
tyskorn
Posts: 6491
Joined: Sun Jan 11, 2009 5:52 pm
Team: Adept MX Graphics
Location: Utah, USA

Re: MXS Twitter

Post by tyskorn »

At least your semicolon finally got some use.
Robert196
Posts: 3408
Joined: Fri Sep 23, 2011 2:50 pm
Location: 192.168. 1.1

Re: MXS Twitter

Post by Robert196 »

tyskorn wrote:At least your semicolon finally got some use.
Not sure what you mean by that; I use it all the time; just not the right way.
| 2013 MotoOption Supercross 250 Eastside Champion | #turnbarcrew |
TeamHavocRacing
Posts: 8371
Joined: Thu Nov 19, 2009 5:52 am
Team: Havoc Racing
Contact:

Re: MXS Twitter

Post by TeamHavocRacing »

tyskorn wrote:At least your semicolon finally got some use.
After you have your large intestine removed, are you left with a semi colon? :mrgreen:
jlv wrote:If it weren't for Havoc I'd have been arguing with the 12 year olds by myself.
Post Reply