/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Project/Maven2/JavaApp/src/main/java/${packagePath}/${mainClassName}.java to edit this template
 */

package com.mycompany.diviseur;

import java.util.Scanner;

/**
 *
 * @author joelx
 */
public class DIVISEUR {

    public static void main(String[] args) {
        
        Scanner scan = new Scanner(System.in);
        
        System.out.println("Entrez un nombre s'il vous plait: ");
        
        int y = scan.nextInt();
        for(int i = 1; i<= y;++i){
            
            if(y % i == 0){
                System.out.println( i +" est un diviseur du nombre " +y);
            }
        }
        
    }
}
