E90Post
 


 
BMW 3-Series (E90 E92) Forum > BMW E90/E92/E93 3-series General Forums > Regional Forums > USA - California > Official SoCal Chat Thread (#5)



Closed Thread
 
Thread Tools Search this Thread
      01-31-2009, 10:20 PM   #53549
to_riffic
Lieutenant General
to_riffic's Avatar
United_States
3072
Rep
13,776
Posts

Drives: rwd
Join Date: Feb 2008
Location: SoCal

iTrader: (38)

hi vicky, u should let me rock ur le37s since u havn't gotten wheels yet

i'll market them for u
__________________
~loud noises~

Appreciate 0
      01-31-2009, 10:24 PM   #53550
Vickyy
Colonel
Taiwan
69
Rep
2,385
Posts

Drives: 2006 AW 325i
Join Date: Dec 2005
Location: walnut, CA

iTrader: (1)

Garage List
2006 325i  [0.00]
package lkuprojectone;
import java.util.Scanner;


public class ProjectOne {

public static void main(String[] args)
{
//Welcome Message
System.out.println("Welcome to the MPFC Calculator");
System.out.println();



//Enter Information
Scanner sc = new Scanner(System.in);
System.out.println("Please enter your first name:");
String firstName = sc.next();

System.out.println("Please enter your last name:");
String lastName = sc.next();

System.out.println("Please enter your phone number:");
String phoneNumber = sc.next();

System.out.println("Please enter your vehicle type:");
String vehicleType = sc.next();

System.out.println("Please enter your vehicle team:");
String vehicleTeam = sc.next();

System.out.println("Please enter starting mileage:");
double startingMileage = sc.nextDouble();

System.out.println("Please enter ending mileage:");
double endingMileage = sc.nextDouble();

System.out.println("Please enter the starting fuel cell units:");
double startingFuel = sc.nextDouble();

System.out.println("Please enter the ending fuel cell units:");
double endingFuel = sc.nextDouble();

double milesTravelled = endingMileage - startingMileage;
double usedFuel = startingFuel - endingFuel;
double fuelCost = 22.00;
double milesPerFuel = milesTravelled / usedFuel;
double tripCost = milesTravelled * fuelCost;

String fuelRating;
if (milesPerFuel >= 300)
fuelRating = "Amazing!!";
else if (milesPerFuel >= 200)
fuelRating = "Economical";
else if (milesPerFuel < 200);
fuelRating = "Fuel Cell Guzzler";




System.out.println("Customer Name:" + firstName + " " + lastName);
System.out.println("Customer Phone:" + phoneNumber);
System.out.println("Vehicle Type:" + vehicleType);
System.out.println("Vehicle Team:" + vehicleTeam);
System.out.println("Starting Odometer Reading:" + startingMileage);
System.out.println("Ending Odometer Reading:" + endingMileage);
System.out.println("Number of Miles Traveled:" + milesTravelled);
System.out.println("Fuel Cells Used:" + usedFuel);
System.out.println("Cost of Fuel:" + fuelCost);
System.out.println("Mile Per Fuel Cell Usage:" + milesPerFuel);
System.out.println("Cost of Trip:" + tripCost);
System.out.println("Car MPFC Rating:" + fuelRating);


}

}
Appreciate 0
      01-31-2009, 10:26 PM   #53551
to_riffic
Lieutenant General
to_riffic's Avatar
United_States
3072
Rep
13,776
Posts

Drives: rwd
Join Date: Feb 2008
Location: SoCal

iTrader: (38)

wth is all that?
__________________
~loud noises~

Appreciate 0
      01-31-2009, 10:29 PM   #53552
Vickyy
Colonel
Taiwan
69
Rep
2,385
Posts

Drives: 2006 AW 325i
Join Date: Dec 2005
Location: walnut, CA

iTrader: (1)

Garage List
2006 325i  [0.00]
some programming stuff. Leona is trying to troubleshoot a problem in my code, and then im done!
Appreciate 0
      01-31-2009, 10:29 PM   #53553
to_riffic
Lieutenant General
to_riffic's Avatar
United_States
3072
Rep
13,776
Posts

Drives: rwd
Join Date: Feb 2008
Location: SoCal

iTrader: (38)

Quote:
Originally Posted by picky vicky View Post
some programming stuff. Leona is trying to troubleshoot a problem in my code, and then im done!
noice
__________________
~loud noises~

Appreciate 0
      01-31-2009, 10:30 PM   #53554
Aurora Bearialis
¡Barça!
Aurora Bearialis's Avatar
Spain
168
Rep
12,042
Posts

Drives: Rainbow Sandals
Join Date: May 2008
Location: Ohio

iTrader: (5)

Garage List
2008 E92 335i  [0.00]
Quote:
Originally Posted by picky vicky View Post
package lkuprojectone;
import java.util.Scanner;


public class ProjectOne {

public static void main(String[] args)
{
//Welcome Message
System.out.println("Welcome to the MPFC Calculator");
System.out.println();



//Enter Information
Scanner sc = new Scanner(System.in);
System.out.println("Please enter your first name:");
String firstName = sc.next();

System.out.println("Please enter your last name:");
String lastName = sc.next();

System.out.println("Please enter your phone number:");
String phoneNumber = sc.next();

System.out.println("Please enter your vehicle type:");
String vehicleType = sc.next();

System.out.println("Please enter your vehicle team:");
String vehicleTeam = sc.next();

System.out.println("Please enter starting mileage:");
double startingMileage = sc.nextDouble();

System.out.println("Please enter ending mileage:");
double endingMileage = sc.nextDouble();

System.out.println("Please enter the starting fuel cell units:");
double startingFuel = sc.nextDouble();

System.out.println("Please enter the ending fuel cell units:");
double endingFuel = sc.nextDouble();

double milesTravelled = endingMileage - startingMileage;
double usedFuel = startingFuel - endingFuel;
double fuelCost = 22.00;
double milesPerFuel = milesTravelled / usedFuel;
double tripCost = milesTravelled * fuelCost;

String fuelRating;
if (milesPerFuel >= 300)
fuelRating = "Amazing!!";
else if (milesPerFuel >= 200)
fuelRating = "Economical";
else if (milesPerFuel < 200);
fuelRating = "Fuel Cell Guzzler";




System.out.println("Customer Name:" + firstName + " " + lastName);
System.out.println("Customer Phone:" + phoneNumber);
System.out.println("Vehicle Type:" + vehicleType);
System.out.println("Vehicle Team:" + vehicleTeam);
System.out.println("Starting Odometer Reading:" + startingMileage);
System.out.println("Ending Odometer Reading:" + endingMileage);
System.out.println("Number of Miles Traveled:" + milesTravelled);
System.out.println("Fuel Cells Used:" + usedFuel);
System.out.println("Cost of Fuel:" + fuelCost);
System.out.println("Mile Per Fuel Cell Usage:" + milesPerFuel);
System.out.println("Cost of Trip:" + tripCost);
System.out.println("Car MPFC Rating:" + fuelRating);


}

}
Sorry, I'm not a robot...

__________________
Tate's chicken sucks!
Appreciate 0
      01-31-2009, 10:36 PM   #53555
E90SLAM
Supreme Allied Commander
E90SLAM's Avatar
Hong Kong
2016
Rep
61,781
Posts

Drives: A BBS WHORE
Join Date: Jul 2007
Location: .

iTrader: (6)

Garage List
Quote:
Originally Posted by ra2fanatic View Post
yup, and i'm there too
ohhh.....nice...
__________________
Appreciate 0
      01-31-2009, 10:36 PM   #53556
Vickyy
Colonel
Taiwan
69
Rep
2,385
Posts

Drives: 2006 AW 325i
Join Date: Dec 2005
Location: walnut, CA

iTrader: (1)

Garage List
2006 325i  [0.00]
Quote:
Originally Posted by ra2fanatic View Post
hi vicky, u should let me rock ur le37s since u havn't gotten wheels yet

i'll market them for u
lol get me some tires, and i will seriously


Quote:
Originally Posted by rameal999 View Post
Sorry, I'm not a robot...

haha sorry
Appreciate 0
      01-31-2009, 10:36 PM   #53557
E90SLAM
Supreme Allied Commander
E90SLAM's Avatar
Hong Kong
2016
Rep
61,781
Posts

Drives: A BBS WHORE
Join Date: Jul 2007
Location: .

iTrader: (6)

Garage List
i eventually need some more Bridgestones...
__________________
Appreciate 0
      01-31-2009, 10:38 PM   #53558
E90SLAM
Supreme Allied Commander
E90SLAM's Avatar
Hong Kong
2016
Rep
61,781
Posts

Drives: A BBS WHORE
Join Date: Jul 2007
Location: .

iTrader: (6)

Garage List
i hate having a cold...
__________________
Appreciate 0
      01-31-2009, 10:41 PM   #53559
Aurora Bearialis
¡Barça!
Aurora Bearialis's Avatar
Spain
168
Rep
12,042
Posts

Drives: Rainbow Sandals
Join Date: May 2008
Location: Ohio

iTrader: (5)

Garage List
2008 E92 335i  [0.00]
Quote:
Originally Posted by E90SLAM View Post
i hate having a cold...
Sucks... it will pass soon
__________________
Tate's chicken sucks!
Appreciate 0
      01-31-2009, 10:55 PM   #53560
snohman
Volk Whore
snohman's Avatar
233
Rep
18,832
Posts

Drives: nothing
Join Date: Apr 2007
Location: Home

iTrader: (1)

Garage List
you trust a guy that got a c-?
Appreciate 0
      01-31-2009, 10:57 PM   #53561
Aurora Bearialis
¡Barça!
Aurora Bearialis's Avatar
Spain
168
Rep
12,042
Posts

Drives: Rainbow Sandals
Join Date: May 2008
Location: Ohio

iTrader: (5)

Garage List
2008 E92 335i  [0.00]


hell, America did for the past 8 years...
__________________
Tate's chicken sucks!
Appreciate 0
      01-31-2009, 10:59 PM   #53562
LOLrance
The Law.
LOLrance's Avatar
Taiwan
311
Rep
14,282
Posts

Drives: BMW
Join Date: Apr 2005
Location: SF / OC

iTrader: (17)

Quote:
Originally Posted by snohman View Post
you trust a guy that got a c-?
if only nabster was present
__________________
Appreciate 0
      01-31-2009, 11:01 PM   #53563
LOLrance
The Law.
LOLrance's Avatar
Taiwan
311
Rep
14,282
Posts

Drives: BMW
Join Date: Apr 2005
Location: SF / OC

iTrader: (17)

bastard Leon. stop eating fatass and come back!

i have a bug in my coding and he goes "i know how to fix it, ok brb, i go eat".

come back and troubleshoot it for me damit, im almost done!
__________________
Appreciate 0
      01-31-2009, 11:25 PM   #53564
LOLrance
The Law.
LOLrance's Avatar
Taiwan
311
Rep
14,282
Posts

Drives: BMW
Join Date: Apr 2005
Location: SF / OC

iTrader: (17)

Donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedone



__________________
Appreciate 0
      01-31-2009, 11:33 PM   #53565
Bluesummer
Lieutenant General
Bluesummer's Avatar
Taiwan
591
Rep
15,816
Posts

Drives: slower than Ayrton Senna
Join Date: Dec 2006
Location: SoCal

iTrader: (15)

Garage List
2017 BMW X5M  [0.00]
2015 M4  [0.00]
2011 E82 135  [0.00]
2011 M3  [0.00]
2007 335  [0.00]
i did fix your codes lol
__________________
IG:d.violet.m3
Appreciate 0
      01-31-2009, 11:51 PM   #53566
Proper Motion LLC
Custom Powder Coater
Proper Motion LLC's Avatar
149
Rep
2,784
Posts

Drives: White 335i Sedan
Join Date: Dec 2008
Location: Orange County CA

iTrader: (2)

Quote:
Originally Posted by l4wr3nc3 View Post
Donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedonedonedonedo nedonedonedonedonedonedonedonedonedonedonedonedone donedonedonedonedonedonedonedonedonedone



lol godly gif
__________________
Appreciate 0
      02-01-2009, 12:08 AM   #53567
E90SLAM
Supreme Allied Commander
E90SLAM's Avatar
Hong Kong
2016
Rep
61,781
Posts

Drives: A BBS WHORE
Join Date: Jul 2007
Location: .

iTrader: (6)

Garage List
oh snap....is law going to drop a smilie bomb???
__________________
Appreciate 0
      02-01-2009, 03:11 AM   #53568
PaulBailey@ltbmw
General
PaulBailey@ltbmw's Avatar
Italy
678
Rep
26,876
Posts

Drives: 2-325 330 2-335 2-Z4 2-135 X5d
Join Date: Mar 2007
Location: Huntington Beach, CA

iTrader: (34)

Garage List
Quote:
Originally Posted by snohman View Post
paul...the situation that bad?
pretty bad
Appreciate 0
      02-01-2009, 05:25 AM   #53569
e92phreak
General
e92phreak's Avatar
United_States
392
Rep
21,745
Posts

Drives: E92 335i TiAg/E46 323i TiAg
Join Date: Mar 2007
Location: CA

iTrader: (1)

Garage List
2007 E92 335i  [9.50]
2000 E46 323i  [0.00]
Quote:
Originally Posted by jumpingjz View Post
hi all,

saw mike driving down New Ave, didn't know he's got quad in that rear, looks nice mike...

JZ


You saw me huh??? I was wondering if you were around there today. EVERY time I drive down there, I wonder if you're around...

Where were you?
__________________
07 E92 335i | TiAg | Step | Padl | Cmft | Alum Trm | PDC | Nav | Assist | Sat | Lthr | Prem | Sprt | Rear Splr | RDSport Quads | iPod | V1 | LT Refl | VS Clear Bra | OEM Lip | KWV2 | Mtec Sides | BBS LM-R
00 E46 323i | TiAg | 5sp | Sport | Roof | RDSport Cams | RDSport tune | RDSport Shift | Volk LE37 | M3 spoiler | PSS9 | SuperSprint | Brembo
Appreciate 0
      02-01-2009, 05:26 AM   #53570
e92phreak
General
e92phreak's Avatar
United_States
392
Rep
21,745
Posts

Drives: E92 335i TiAg/E46 323i TiAg
Join Date: Mar 2007
Location: CA

iTrader: (1)

Garage List
2007 E92 335i  [9.50]
2000 E46 323i  [0.00]
BTW, Vicky/Law...
My wife's a Java guru... She writes code that protects our national security.
__________________
07 E92 335i | TiAg | Step | Padl | Cmft | Alum Trm | PDC | Nav | Assist | Sat | Lthr | Prem | Sprt | Rear Splr | RDSport Quads | iPod | V1 | LT Refl | VS Clear Bra | OEM Lip | KWV2 | Mtec Sides | BBS LM-R
00 E46 323i | TiAg | 5sp | Sport | Roof | RDSport Cams | RDSport tune | RDSport Shift | Volk LE37 | M3 spoiler | PSS9 | SuperSprint | Brembo
Appreciate 0
Closed Thread

Bookmarks

Tags
aiya, bbs ftw, bmw lol, e92phreak needs a job, eldy pw = fail, eldy=postwhoringdouchebag, fuck all of you, go lakers!!!!, herro, i are purrrtttyyyy, jhvalley=attentionwhore, l4wr3nc3 is an asshole., l4wr3nc3 is my hero!!, lame tags ftw, pink = sex, silky smooth, simon will die a virgin, socal ftw, solidsnake = cantoguy, solidsnake=soliddouchbag!, stars burgers ftmfw!!!!!!, stars' wings are the best, tag one, xxr's ftw, ya'll losers


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT -5. The time now is 02:54 AM.




e90post
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
1Addicts.com, BIMMERPOST.com, E90Post.com, F30Post.com, M3Post.com, ZPost.com, 5Post.com, 6Post.com, 7Post.com, XBimmers.com logo and trademark are properties of BIMMERPOST