View Single Post
Old Oct 27th, 2005, 4:10 PM   #14
D-Ferg27
Programmer
 
D-Ferg27's Avatar
 
Join Date: Oct 2005
Posts: 49
Rep Power: 0 D-Ferg27 is on a distinguished road
grrrrrrr WTF is wrong im starting to get pissed :mad:

#include <iostream>
int main()
using namespace std;

{
    int i;
    cout << "please enter an integer value: ";
    cin >> i;
    cout << " \n the value you entered is" << i;
    cout << "and its double is...\n ";
    cout << i*2;
    return 0;
}
D-Ferg27 is offline   Reply With Quote