fork download
  1. fun printDivisors(n: Int) {
  2. for (i in 1 until (n / 2) + 1) {
  3. if (n % i == 0) {
  4. println(i)
  5. }
  6. }
  7.  
  8. if (n > 1) {
  9. println(n)
  10. }
  11. }
  12.  
  13. fun main() {
  14. val n = 12
  15.  
  16. println("Dzielniki liczby $n:")
  17. printDivisors(n)
  18. }
Success #stdin #stdout 0.07s 36596KB
stdin
Standard input is empty
stdout
Dzielniki liczby 12:
1
2
3
4
6
12