Compare commits

..

No commits in common. "lesson_47" and "master" have entirely different histories.

1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
/*
* main.cpp
*
* Created on: 7 сент. 2021 г.
* Author: alexander
*/
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
cout << "Введите число от 0 до 255: ";
int n;
cin >> n;
cout << "Число " << n << " в двоичной системе счисления: ";
for (int i = 7; i >= 0; --i) {
int degree = pow(2, i);
cout << (n >= degree) << (i == 4 ? " " : "");
if (degree <= n)
n -= degree;
}
return 0;
}