Dyskusje Q&A
std::string
1 Głos
3 odpowiedzichar* vs std::string
0 głosów
1 Odpowiedź#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 głosów
5 odpowiedziPopularne dzisiaj
X velocity
0 Votes
Files not linking in C++
0 Votes
And... Who is the staff then?
2 Votes
I am a super beginner
0 Votes
Web Dev
0 Votes
Pls give me an idea
1 Votes
Why Pro?
0 Votes