Advertisement
SergeyPGUTI

7.2.1

Nov 26th, 2015
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. public class Main {
  2.  
  3.     public static void main(String[] args) {
  4.         System.out.println("Hello World!");
  5.         for (int code = 32; code <= 255; code++)
  6.         {
  7.             System.out.print(code+" ");
  8.             System.out.println((char)code);
  9.         }
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement