Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void main(String[] args) {
- int i = 1;
- int fat = 1;
- while (i <= 5) {
- fat = fat * i;
- i++;
- }
- System.out.println(fat);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement