Community > The Lobby

Where is my post?

(1/3) > >>

m0d:
I just posted my imaginary letter in the forum and ITS GONE.

I demand to know who's responsible for going around deleting peoples imaginary posts and why.

 :bang:  :loco:  :blah:

Deltafire:
It was me.  I was testing out my imaginary admin powers.

Eagle:
And I granted him the imaginary admin position by using my imaginary security hacking skills.

Saga Musix:
Hah! Your skills are far too bad! I knocked your pc and your brain and got the complete message... too bad that i sold it to the army :D:D how do ya want to get it back?

Eagle:
Hacked my PC with a QBasic application? Wow, that DOES sound threatening! 8)  :loco:

OK, time for round 2! (This be a kid's battle, no?)

Finished the C++ application I have been working on:

--- Code: ---/////////////////////////////////////
// Fahrenheit->Celsius converter
//  by Fredrik "Eagle" Larsson
//
//DOS-BOX based string operator.
//Attempt to keep the box open.
/////////////////////////////////////

#include <iostream>

int main()
{
//Include variables
int Fahrenheit, Celsius, RETURNUM;

//Display introductionary text
std::cout << "Fahrenheit to Celsius converter\n";
std::cout << "   by Fredrik Eagle Larsson\n";
std::cout << "\n";

//Prompt for input
std::cout << "Input the Fahrenheit degrees to be converted: ";
std::cin >> Fahrenheit;

//Computing the variables
Celsius = 5 * (Fahrenheit - 32) / 9;

//Display the result
std::cout << "The degrees you wrote in Fahrenheit is ";
std::cout << Celsius;
std::cout << " degrees in Celsius.";

//Prompt to close
std::cout << "\n\nInput a number and press return to close down.";

std::cin >> RETURNUM;

return 0;
}
--- End code ---


Any idea of how I can make the application wait for the user to read and press return before returning back to the system?

Navigation

[0] Message Index

[#] Next page

Go to full version