Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <iostream>
using namespace std;
int main(){
int userinputdec;
cout << "Please enter a number in decimal: ";
cin >> userinputdec;
cin.ignore();
cout << "The number in hex is: ";
cout << hex << uppercase << userinputdec << endl;
cout << "enter 1 to exit and any other key to continue: " ;
cin >> selection;
cin.ignore();
}
int main(){
int userinputdec;
cout << "Please enter a number in decimal: ";
cin >> userinputdec;
cin.ignore();
cout << "The number in hex is: ";
cout << hex << uppercase << userinputdec << endl;
cin.get();
}