Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <vector>
- #include <algorithm>
- #include <sstream>
- using namespace std;
- /**
- * Test 1
- * Entrée :
- * F
- * Sortie attendue :
- * 15
- *
- * Test 2
- * Entrée :
- * 5
- * Sortie attendue :
- * 5
- *
- * Test 3
- * Entrée :
- * FF
- * Sortie attendue :
- * 255
- *
- * Test 4
- * Entrée :
- * 4B68
- * Sortie attendue :
- * 19304
- *
- * Test 5
- * Entrée :
- * 83DF47
- * Sortie attendue :
- * 8642375
- *
- * Test 6
- * Entrée :
- * 10
- * Sortie attendue :
- * 16
- */
- int main()
- {
- string number;
- cin >> number; cin.ignore();
- unsigned int x;
- std::stringstream ss;
- ss << std::hex << number;
- ss >> x;
- cout << x << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement