F&A Diskussionen
#include <iostream>
#include <bitset>
int main()
{
int myDecimalNumber;
std::cin >> myDecimalNumber;
std::string binary = std::bitset<8>(myDecimalNumber).to_string(); //to binary
std::cout<<binary<<"\n";
unsigned long decimal = std::bitset<8>(binary).to_long();
std::cout<<decimal<<"\n";
return 0;
}
2 Stimmen
5 AntwortenHeute heiß
Need suggestions
1 Votes
progaming
1 Votes
Anyone Learning Godot?
1 Votes
hello world i need help
2 Votes
hi
1 Votes