Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package mengantibilanganoktalkedesima;
  2.  
  3. /**
  4. * Created by ASUS on 3/30/2017.
  5. */
  6. public class Mengantibilanganoktalkedesimal {
  7. public static void main(String args[]) {
  8. int six = 06;
  9. int seven = 07;
  10. int eight = 010;
  11. int nine = 011;
  12. System.out.println("Octal six = " + six);
  13. System.out.println("Octal seven = " + seven);
  14. System.out.println("Octal eight = " + eight);
  15. System.out.println("Octal nine = " + nine);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement