Untitled
unknown
plain_text
2 years ago
638 B
9
Indexable
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author AdvancedLab
*/
import java.util.Scanner;
public class NewClass {
public static void main(String[] args)
{
Scanner a= new Scanner(System.in);
int number= a.nextInt();
System.out.println("The divisors are = ");
for(int i=1; i<=number; i++)
{
if(number%i==0)
{
System.out.println(i);
}
}
}
}
Editor is loading...