static void allMultipleNumbers(){
System.out.println("tipe the number : ");
int number = new Scanner(System.in).nextInt();
System.out.println(number);
for (int i = 0; i<=number; i++){
if ((i!=0)&&((number%i)==0)){
System.out.print(i + " ");
}
}
}
Дано число, необходимо вывести все кратности данного числа через пробел, включая единицу и само число.
Sample Input 1:
8
Sample Output 1:
1 2 4 8
Sample Input 2:
5
Sample Output 2:
1 5
Sample Input 3:
7
Sample Output 3:
1 7