标签: c++
当我需要将十进制代码解析为二进制代码时,我怎么能看到答案呢?
答案 0 :(得分:4)
decimal code到binary code?我认为你的意思是decimal number到binary number,所以使用std :: bitset例如。
decimal code
binary code
decimal number
binary number
#include <bitset> ... int i = 49; std::cout << std::bitset<sizeof(i)*8>(i).to_string() << std::endl;