// cont/bitset2.cpp #include #include #include #include using namespace std; int main() { /* Вывод чисел в двоичном представлении */ cout << "267 as binary short: " << bitset::digits>(267) << endl; cout << "267 as binary long: " << bitset::digits>(267) << endl; cout << "10,000,000 with 24 bits: " << bitset<24>(1e7) << endl; /* Преобразование двоичного представления в целое число */ cout << "\"1000101011\" as number: " << bitset<100>(string("1000101011")).to_ulong() << endl; }