knugi

Untitled

Jun 30th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package zajęcia2;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Zad3 {
  6. public static void main(String[] args){
  7. Scanner wej = new Scanner(System.in);
  8. int liczba = wej.nextInt();
  9. wej.close();
  10. int potega = 1;
  11. while(true){
  12. if(potega*potega<=liczba){
  13. System.out.println(potega*potega);
  14. potega++;
  15. }
  16. else break;
  17. }
  18.  
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment