Discussions Q&R
How to develop a game
-2 Votes
4 RéponsesCout__x
0 Vote
2 Réponses#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 RéponsesPlz answer?
1 Vote
2 RéponsesWher is mistake?
0 Vote
5 RéponsesAujourd'hui en vedette
Activities on sololearn
4 Votes
Html issue
2 Votes
Can you help me ?
1 Votes
Code coach
0 Votes
How I can use div
1 Votes
TIPS From Veterans
1 Votes
App development đ„âïž
1 Votes
Playground input
1 Votes
Computer architecture
1 Votes