fork download
  1. import kotlin.math.sqrt
  2.  
  3.  
  4. fun printDivisors(n: Int) {
  5. for (i in 1 until sqrt(n.toDouble()).toInt() + 1) {
  6. if (n % i == 0) {
  7. println(i)
  8.  
  9. if (i != n / i) {
  10. println(n / i)
  11. }
  12. }
  13. }
  14. }
  15.  
  16. fun main() {
  17. val n = 12
  18.  
  19. println("Dzielniki liczby $n:")
  20. printDivisors(n)
  21. }
Success #stdin #stdout 0.08s 40692KB
stdin
Standard input is empty
stdout
Dzielniki liczby 12:
1
12
2
6
3
4