Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1.  
  2. import java.util.Scanner;
  3.  
  4. public class Kertoma {
  5.  
  6. public static void main(String[] args) {
  7. Scanner lukija = new Scanner(System.in);
  8.  
  9. System.out.println("Anna luku:");
  10. int n = Integer.valueOf(lukija.nextLine());
  11.  
  12. int kertoma = 1;
  13. int luku = 1;
  14.  
  15. while (luku <= n) {
  16. kertoma *= luku;
  17. luku++;
  18. }
  19. System.out.println("Kertoma on " + kertoma);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement