Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class FiveNumbers {
  2. public static void main(String[] args) {
  3. int nout,n=65428;
  4. System.out.println(n/10000);
  5. System.out.println((n/1000)%10);
  6. System.out.println((n/100)%10);
  7. System.out.println((n/10)%10);
  8. System.out.println(n%10);
  9.  
  10.  
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement