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;
}