Advertisement
igovasconcelos

Untitled

Aug 25th, 2020
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.16 KB | None | 0 0
  1. public static void main(String[] args) {
  2.   int i = 1;
  3.   int fat = 1;
  4.   while (i <= 5) {
  5.     fat = fat * i;
  6.     i++;
  7.   }
  8.   System.out.println(fat);
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement