mattsan #7228(2008/08/19 13:59 GMT) [ C++ ] Rating0/0=0.00
2進数限定、桁数固定です。
1 2 3 4 5 6 7 8 9 10 11
#include <bitset> #include <iostream> int main(int, char* []) { int n; std::cin >> n; std::cout << std::bitset<32>(n) << std::endl; return 0; }
Rating0/0=0.00-0+
[ reply ]
mattsan
#7228()
[
C++
]
Rating0/0=0.00
2進数限定、桁数固定です。
Rating0/0=0.00-0+
[ reply ]