Advertisement
Guest User

Ex4

a guest
Feb 19th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Ex4 {
  2.     public static void main(String[] args) {
  3.  
  4.         int n = 10;
  5.         int reminder;
  6.  
  7.         while (n != 0) {
  8.             reminder = n % 2;
  9.             n = n / 2;
  10.             System.out.print(reminder);
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement