SFGAmWorld.com
Untitled Document
Park Information
Latest News
Great America
Roller Coasters
Rides
Hurricane Harbor
Water Slides
Water Attractions
Advertisement

Bored

A Off-Topic forum to discuss things that aren't related to the Amusement Park Industry.
Postby [jonrev] on February 12th, 2006, 11:51 am
Image
I spammed your boards!!
[jonrev]

User avatar
 
Posts: 3728
Images: 0
Joined: April 21st, 2003, 11:40 am
Location: Lake Wazzapamani

Postby FRD714 on February 12th, 2006, 1:04 pm
Jon Revelle wrote:Image
I spammed your boards!!

Banned! :lol:

Good one.
Frank
FRD714

User avatar
 
Posts: 3547
Joined: October 26th, 2005, 4:46 pm
Location: Chicago

Postby Rusty888 on February 12th, 2006, 6:45 pm
I was so bored this weekend that I watched not 1, not 2, but all 3 of the movies in the Back to the Future Trilogy, plus some bonus material!!! :shock: Someone help me!!!
i'm rocking the suburbs, just like quiet riot did...
Rusty888

User avatar
 
Posts: 752
Joined: July 5th, 2005, 8:56 am
Location: 1 hour north of SFGAm

Postby punkbunny24242 on February 13th, 2006, 8:48 am
Ouchie :cry:

I burned my finger this morning with coffee and it hurts allot!

Good way to start off Monday *sigh*
punkbunny24242

User avatar
 
Posts: 1963
Joined: January 28th, 2004, 10:52 am
Location: Lockport, IL

Postby [jonrev] on February 13th, 2006, 9:07 am
Coffee will do that. It's worse when you spill it on yourself like I did a few days ago! :shock:
[jonrev]

User avatar
 
Posts: 3728
Images: 0
Joined: April 21st, 2003, 11:40 am
Location: Lake Wazzapamani

Postby TwistedSTEEL666 on February 13th, 2006, 1:09 pm
Rusty888 wrote:I was so bored this weekend that I watched not 1, not 2, but all 3 of the movies in the Back to the Future Trilogy, plus some bonus material!!! :shock: Someone help me!!!


I would of watched it too, I have it on DVD, however I think I would of gone with the classic Star Wars trilogy(on DVD) starting with A New Hope...
Image
Antonio Aguilera
https://www.facebook.com/BEAMER3K
http://beamer3k.deviantart.com/
View my artwork.

Check out my YouTube Gamer channel.
NRG-FLO Gaming.
https://www.youtube.com/@NRGFLOGaming
TwistedSTEEL666

User avatar
 
Posts: 1157
Images: 72
Joined: March 24th, 2003, 12:04 am
Location: Darien- About an hour away or so.

Postby CoasterDude12-2 on February 13th, 2006, 3:43 pm
56) Andrew is bored. CoasterDude12-2 is Andrew. Is CoasterDude12-2 bored?

A)Yes
B)No
C)Who cares
D)Of course he is
E)Please repeat the question


57) Andrew is bored. CoasterDude12-2 is Andrew. Is CoasterDude12-2 bored?

A)Yes
B)No
C)Who cares
D)Of course he is
E)Please repeat the question


58) Andrew is bored. CoasterDude12-2 is Andrew. Is CoasterDude12-2 bored?

A)Yes
B)No
C)Who cares
D)Of course he is
E)Please repeat the question

...
CoasterDude12-2

User avatar
 
Posts: 3027
Images: 10
Joined: November 28th, 2004, 7:02 pm
Location: Chicago

Postby Rusty888 on February 13th, 2006, 5:32 pm
1. A
2. A
3. A

As a true testiment to my boredom, I am so bored I actully answered that! :(
i'm rocking the suburbs, just like quiet riot did...
Rusty888

User avatar
 
Posts: 752
Joined: July 5th, 2005, 8:56 am
Location: 1 hour north of SFGAm

Postby punkbunny24242 on February 14th, 2006, 10:12 am
Wow I have no paperwork and no calls are coming in today...

BOOOOOORING!
punkbunny24242

User avatar
 
Posts: 1963
Joined: January 28th, 2004, 10:52 am
Location: Lockport, IL

Postby DejaVuGurl1203 on February 16th, 2006, 10:15 pm
Never trust anyone to do a project for you and have it done on time.

:roll:
DejaVuGurl1203

User avatar
 
Posts: 4181
Joined: December 28th, 2002, 8:35 pm
Location: Illinois

Postby w00dland on February 16th, 2006, 10:22 pm
I'm bored. Not tired, but lazy.
Top 5 wood-5-Goliath 4-Ravine Flyer II 3-Phoenix 2-Voyage 1-El Toro
Top 5 Steel- 5-Velocicoaster 4- Maverick 3- Fury 325 2-Steel Vengeance 1-X2
Coaster Count: 444
w00dland
Moderator

User avatar
 
Posts: 4630
Joined: January 29th, 2004, 2:36 pm
Location: Winter Haven, FL

Postby [jonrev] on February 16th, 2006, 10:30 pm
I hate winter. :x
[jonrev]

User avatar
 
Posts: 3728
Images: 0
Joined: April 21st, 2003, 11:40 am
Location: Lake Wazzapamani

Postby [jonrev] on February 16th, 2006, 11:35 pm
I still hate winter. :evil:
[jonrev]

User avatar
 
Posts: 3728
Images: 0
Joined: April 21st, 2003, 11:40 am
Location: Lake Wazzapamani

Postby Aero737 on February 23rd, 2006, 10:28 pm
Code: Select all
//#############################################
//CSCI 240 Assignment 5 - Spring 2006
//Programmer:  Jason Z107419
//Section:     10
//GA:         
//Date Due:    2/24/2006
//Purpose:     This program is designed to
//             prompt the user for for a
//             quadratic equation and detrermin
//             the discrimant, vertex, whether
//             it opens up or down, and the
//             roots.
//##############################################


#include <iostream>
#include <iomanip>
#include <conio.h>
#include <math.h>

using namespace std;

double getA(double x)
    {
    cout << "Please enter A coeffiecient: ";
    cin >> x;
   
    while (x==0)
    {
    cout << "Please enter a non-zero number" << endl;
   
    cout << "Please enter A coeffiecient: ";
    cin >> x;
    }
    return x;
    }
//***************************

double getDiscr(double a, double b, double c)
       {
       return (b*b)-(4*a*c);
       }

//***************************

double getVertex_X(double a, double b)
       {
       return (-b)/(2*a);
       }

//***************************

double getVertex_Y(double a, double b, double c)
       {
       return a * pow(-b/(2*a),2)+b*(-b/(2*a))+c;
       }

//***************************

double getRoot1(double a, double b, double c)
       {
       return (-b-sqrt(pow(b,2)-4*a*c))/(2*a);
       }

//***************************

double getRoot2(double a, double b, double c)
       {
       return (-b - sqrt(pow(b,2)-4*a*c))/(2*a);
       }

//***************************

char getYesNo(string s)
     {
     cout << "Another (y/n)?:";
     cin >> s;
     if (s == "y" || s == "Y" || s == "Yes" || s == "YES"
        || s== "yes")
        return 'y';
     else if (s == "n" || s == "N" || s == "NO" || s == "No"
             || s== "no")
        return 'n';
     while (s != "y" || s != "y" || s != "Yes"  || s != "YES"|| s != "yes"||
           s != "n" || s != "N" || s != "No" || s != "NO" || s != "no")
           {
           cout << endl << "Please Enter another Value: ";
           cin >> s;
                    if (s == "y" || s == "Y" || s == "Yes" || s == "YES"
                       || s== "yes")
                          {
                          return 'y';
                          }
                    else if (s == "n" || s == "N" || s == "NO" || s == "No"
                          || s== "no")
                          {
                          return 'n';
                          }
           }
     }

//***************************

int main ()
    {
    string S;
    do
    {     
    double A, B, C, Discr, Xver, Yver, Root1, Root2;
    string S;
   
    A = getA(A);
   
    cout << "Please enter B coeffiecient: ";
    cin >> B;
   
    cout << "Please enter C coeffiecient: ";
    cin >> C;
   
    if (A>0)
       {
       cout << "The Parabola opens upward" << endl;
       }
    else
       {
       cout << "The Parabola opens down" << endl;
       }
   
   
    Discr = getDiscr(A, B, C);
    cout << "The Discriminant is: " << Discr
                                    << fixed
                                    << setprecision (3)
                                    << endl;
   
   
    Xver = getVertex_X(A, B);   
    Yver = getVertex_Y(A, B, C);   
    cout << "The Vertex has the coordinates of x = " << Xver
                                                     << fixed
                                                     << setprecision (3)
                                                     << " y = "
                                                     << fixed
                                                     << setprecision (3)
                                                     << Yver << endl;
   
    if (Discr == 0)
       {
       Root1 = getRoot1(A, B, C);
       cout << "The Quadratic Equation has only 1 root: " << Root1
                                                          << fixed
                                                          << setprecision (3)
                                                          << endl;
       }
    else if (Discr < 0)
       {
       cout << "There are no roots for this Quadratic Equation " << endl;
       }
    else
       {
       cout << "The Parabola has 2 roots at: " << endl;
       Root1 = getRoot1(A, B, C);
       cout << "Root 1 is: " << Root1
                             << fixed
                             << setprecision (3)
                             << endl;
   
       Root2 = getRoot2(A, B, C);
       cout << "Root 2 is: " << Root2
                             << fixed
                             << setprecision (3)
                             << endl;
       }
       
    }
    while (getYesNo(S) == 'y');
   
    system ("pause");
    return 0;
    }
//***************************
Aero737
The Mod Squad

User avatar
 
Posts: 3787
Joined: February 6th, 2003, 10:54 pm
Location: Beijing CHINA

Postby FRD714 on February 23rd, 2006, 10:30 pm
Parabolas......fun stuff.
Frank
FRD714

User avatar
 
Posts: 3547
Joined: October 26th, 2005, 4:46 pm
Location: Chicago

Postby DejaVuGurl1203 on February 23rd, 2006, 10:34 pm
Man I cannot wait until I finish college and get my Bachelors Degree.
DejaVuGurl1203

User avatar
 
Posts: 4181
Joined: December 28th, 2002, 8:35 pm
Location: Illinois

Postby CoasterDude12-2 on February 23rd, 2006, 10:48 pm
B to the O to the R-E-D
CoasterDude12-2 is a bored MC!
CoasterDude12-2

User avatar
 
Posts: 3027
Images: 10
Joined: November 28th, 2004, 7:02 pm
Location: Chicago

Postby FRD714 on February 23rd, 2006, 10:50 pm
Image
Frank
FRD714

User avatar
 
Posts: 3547
Joined: October 26th, 2005, 4:46 pm
Location: Chicago

Postby FRD714 on February 23rd, 2006, 11:45 pm
Is negative rep back? I just noticed mine went from 11 to 10..... :?
Frank
FRD714

User avatar
 
Posts: 3547
Joined: October 26th, 2005, 4:46 pm
Location: Chicago

Postby ymmit on February 24th, 2006, 12:05 am
After this semester I don't ever want to see another C++ code in my life
Ahh the rain drop, the perfect aerodynamic shape. It is actually formed by the air around it.
ymmit

User avatar
 
Posts: 123
Joined: February 20th, 2006, 11:41 pm

Postby Aero737 on February 24th, 2006, 2:16 am
Nobody likes C++ here eh?
Aero737
The Mod Squad

User avatar
 
Posts: 3787
Joined: February 6th, 2003, 10:54 pm
Location: Beijing CHINA

Postby ihauntu2 on February 24th, 2006, 1:45 pm
Sorry I was a C hack back in college.

Computer math for Engineers - AKA using C to perform Calculus.

I got an A in it and created a new error in C compiler that the proffesor had never seen. :twisted:
It's the most fun in the park when your laughing in the dark.
ihauntu2

User avatar
 
Posts: 1218
Joined: September 16th, 2003, 10:48 am
Location: Central IL

Postby Aero737 on February 24th, 2006, 2:38 pm
I managed to get the math.h to compile incorectly, I don't know how.
Aero737
The Mod Squad

User avatar
 
Posts: 3787
Joined: February 6th, 2003, 10:54 pm
Location: Beijing CHINA

Postby [jonrev] on March 5th, 2006, 3:30 pm
Im bored. Someone AIM me.

:D :) :( :o :shock: :? 8) :lol: :x :P :oops: :cry: :evil: :twisted: :wink: :!: :?: :idea: :arrow: :| :mrgreen:
[jonrev]

User avatar
 
Posts: 3728
Images: 0
Joined: April 21st, 2003, 11:40 am
Location: Lake Wazzapamani

Postby ymmit on March 5th, 2006, 10:36 pm
I spent eight hours at school yesterday doing C++ and five on Friday.
I :twisted: HATE :evil: :x C++
Ahh the rain drop, the perfect aerodynamic shape. It is actually formed by the air around it.
ymmit

User avatar
 
Posts: 123
Joined: February 20th, 2006, 11:41 pm

PreviousNext

Return to Off-Topic Forum

Who is online

Users browsing this forum: No registered users and 17 guests

Privacy Policy About Us Copyright Disclaimer E-Mail SFGAmWorld
COPYRIGHT - SFGAmWorld.com
All content and images on this site are Copyright 2001 - SFGAmWorld.com and may not be used without permission.
This is NOT the official site of Six Flags Great America, SFGAmWorld.com is not affilated or endorsed by Six Flags Great America.
SFGAmWorld.com does not make any guarantee on the accuracy of the information on this website and cannot be held responsible by the use of this information.
SIX FLAGS and all related indicia are trademarks of Six Flags Theme Parks Inc. ®, TM and © . The official Six Flags site can be found at SixFlags.com
BATMAN, SUPERMAN and all related characters and elements are trademarks of © DC Comics.
LOONEY TUNES and all related characters and elements are trademarks of and © Warner Bros. Entertainment Inc.©
The Wiggles Pty Ltd. SCOOBY-DOO and all related characters and elements are trademarks of and © Hanna-Barbera.