Advertisement
wingman007

JavaFactorielInput

Nov 15th, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.86 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Factoriel {
  4.  
  5.     public static void main(String[] args) {
  6.         // TODO Auto-generated method stub
  7.         // communicate with the user View logical layer
  8.         // Start of the View
  9.         int n = 10;
  10.         Scanner input = new Scanner(System.in);
  11.        
  12.         System.out.print("I will calculate n!. Please, enter n: ");
  13.        
  14.         while(!input.hasNextInt()){          
  15.             String error = input.next();
  16.             System.out.printf("%s is not a number\n", error);
  17.  
  18.         }
  19.         n = input.nextInt();
  20.         input.close();
  21.         // End of the view
  22.        
  23.        
  24.         // the business logic (Controller) logical layer
  25.         int factoriel = 1;
  26.         for(int i = 0; i <= n; i++) {
  27.             if(i == 0 || i == 1) factoriel = 1;
  28.             else factoriel *= i;
  29.             // TODO this should be moved to the view
  30.             System.out.println("Factoriel " + i + "! = " + factoriel);
  31.         }
  32.     }
  33.  
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement