Advertisement
Banta_Sandra

Tentang Penggunaan Tipe Data

Mar 23rd, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package bab2;
  6.  
  7. /**
  8.  *
  9.  * @author BIT
  10.  *
  11.  * http://id.wikipedia.org/wiki/Integer_(ilmu_komputer)
  12.  */
  13. public class Percobaan7 {
  14.     public static void main(String args[]) {
  15.         int x;
  16.         int y;
  17.  
  18.             x=2147483647;
  19.             System.out.println("x = " + x);
  20.  
  21.  
  22.             y=x+1;
  23.             System.out.println("y = " + y);
  24. }
  25.    
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement