Q&A Discussions
What is hexadecimal
3 Votes
2 AnswersOctal system
2 Votes
1 AnswerparseInt() method
1 Vote
2 AnswersPI to more than 15 digits
0 Votes
6 Answerswhy is it <=36?
1 Vote
2 Answers#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 Votes
5 AnswersHot today
I need help to solve this
0 Votes
Project
0 Votes
Engineer Cloud
0 Votes
How to add comment in python?
0 Votes
Lua?
1 Votes
How do we code calculator
1 Votes