Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. package IO;
  2.  
  3.  
  4. public class WriteDemo {
  5. public static void main(String[] args) {
  6. int b;
  7. b = 'A';
  8. System.out.write(b);
  9. System.out.write('\n');
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement