Advertisement
VEGASo

Lab #4 Ex. 4

Oct 25th, 2022
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.65 KB | None | 0 0
  1. #include <iostream>    
  2. #include <bitset>
  3.  
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     setlocale(LC_ALL, "RU");
  10.  
  11.     int n;
  12.  
  13.     cout << "Введите число: ";
  14.     cin >> n;
  15.  
  16.     bitset<8> n2 = n; // Для двоичной системы
  17.  
  18.     //showbase показыает тип системы
  19.     cout << "\nВ двоичной системе: "<< showbase << n2 << '\n';   // 2
  20.     cout << "В восмеричной системе: " << oct << n << '\n';       // 8
  21.     cout << "В десятичной системе: " << dec << n << '\n';      // 10
  22.     cout << "В шестнадцатиричной системе: " << hex << n << '\n'; // 16
  23.  
  24.     return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement