Advertisement
Guest User

Untitled

a guest
Sep 29th, 2010
2,633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.18 KB | None | 0 0
  1. public class Square {
  2.  
  3.     public static void main(String[] args) {
  4.         Integer n = 0;
  5.         while (n*n < 12000){
  6.             n++;
  7.         }
  8.         System.out.print(n);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement