Advertisement
korobushk

decimalToB

Apr 19th, 2021
1,158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1.    public static void main(String[] args) {
  2.  
  3.         var result = decimalToBinary(13);
  4.         System.out.println(result);
  5.     }
  6.  
  7.     public static int decimalToBinary(int n) {
  8.         if (n == 0) {
  9.             return 0;
  10.         }
  11.         return n % 2 + 10 * decimalToBinary(n / 2);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement