#include using namespace std; int main() { float x; cout << "Enter a number" << "\n"; cin >> x; if ( x < 0 ) x = -x; cout << "The absoulute value of your number is " << x << endl; cout << "\n\n"; system( "PAUSE" ); return( 0 ); }