Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用して10進数を2進数に変換しました
int k=8; String toBinaryString = Integer.toBinaryString(k);
いくつかの操作の後、int値を戻したいです。誰かが関数を手伝ってくれますか、それともループのみを使用して変換する必要がありますか?
以下を使用できます。
int originalValue = Integer.parseInt(toBinaryString , 2));