Advertisement
Guest User

Untitled

a guest
Aug 4th, 2011
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. public class Test1 {
  2.    
  3.     public static void main(String[]args){
  4.         String a="";//代表空行 1 blank line
  5.         String b=" ";//代表一格空白, 1 space
  6.         String c=null;//print null
  7.         System.out.println(a);
  8.         System.out.println(b);
  9.         System.out.println(c);
  10.     }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement