POST WHORING SNUBIE THREAD

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • Andy105
    replied
    Originally posted by Premium Parrots View Post
    then find yourself an cute gal and put that Trojan to good use.
    or find an ugly one, and flip her over.

    Leave a comment:


  • Premium Parrots
    replied
    Originally posted by Frosted View Post
    Every time I reload this page it says it's got a Trojan.
    then find yourself an cute gal and put that Trojan to good use.

    Leave a comment:


  • Frosted
    replied
    Every time I reload this page it says it's got a Trojan.

    Leave a comment:


  • trebli
    replied
    … but, three times!

    Leave a comment:


  • trebli
    replied
    Not once ... not twice …

    Leave a comment:


  • trebli
    replied
    Originally posted by jagmanss View Post
    I just farted

    So did I!

    Leave a comment:


  • whalen
    replied
    Originally posted by Paco
    I want the last 10 minutes of my life back, thanks.
    My work is done here!

    Leave a comment:


  • jagmanss
    replied
    Originally posted by Paco
    I want the last 10 minutes of my life back, thanks.
    Sorry! You can't! We just can't have that here...

    Leave a comment:


  • Skell18
    replied
    Originally posted by Paco
    I want the last 10 minutes of my life back, thanks.
    No!

    Leave a comment:


  • Skell18
    replied
    Originally posted by Crow


    hahahahaha love it

    Leave a comment:


  • Crow
    replied
    Informative Post Whoring.



    Leave a comment:


  • Crow
    replied
    #include <iostream>
    #include <cmath>
    using namespace std;

    int main()

    {
    double tempF;
    cout << "Please enter the temperature (in Fahrenheit) ";
    cin >> tempF;

    double windM;
    cout << "Please enter the wind speed (in miles per hour) ";
    cin >> windM;

    double windChill = ( 35.74 + 0.6215 * tempF - 35.75 * pow(windM, 0.16) + (0.4275 * tempF) * pow(windM, 0.16) );

    cout << "The current temperature (with wind chill factored) is " << windChill << endl;

    cin.get();
    cin.get();
    return 0;

    }

    Leave a comment:


  • Crow
    replied
    Open Source Crow.

    #include <iostream>
    #include <cmath>
    using namespace std;

    int main()

    {

    double earthRad = 6371;
    double startLat;
    double startLon;
    cout << "Please enter the latitude and longitude of your starting position (in decimal degrees) ";
    cin >> startLat >> startLon;

    double endLat;
    double endLon;
    cout << "Please enter the latitude and longitude of your end position (in decimal degrees) ";
    cin >> endLat >> endLon;

    double dLat = endLat - startLat;
    double dLon = endLon - startLon;
    const double pi = 3.1415;

    double dLatRadies = dLat * (pi / 180);
    double dLonRadies = dLon * (pi / 180);

    double distanceKm;
    double distanceMi;
    double b = ( pow(sin(dLonRadies / 2), 2.0) ) * cos(startLat * pi / 180) * cos(endLat * pi / 180);
    double a = ( pow(sin(dLatRadies / 2), 2.0) ) + b;
    double c = 2 * atan2( sqrt(a), sqrt(1 - a) );
    distanceKm = earthRad * c;
    distanceMi = distanceKm / 1.6;


    cout << "Your input coordinates were " << startLat << ", " << startLon << " (start)" << endl;
    cout << "Your input coordinates were " << endLat << ", " << endLon << " (end)\n" << endl;
    cout << "The distance between these two points in kilometres is " << distanceKm << endl;
    cout << "The distance converted to miles is " << distanceMi << endl;

    cin.ignore();
    cin.get();
    return 0;

    }

    Leave a comment:


  • Zimobog
    replied
    What?

    Leave a comment:


  • Mr. Snuffleupagus
    replied
    Originally posted by Mr. Snuffleupagus View Post
    ttt
    Again!

    Leave a comment:

Related Topics

Collapse

Working...
X