Codex Home
Kojo Home
Login
Sign up
Search
Code Sketch
Code which prints all odd numbers from 1-100
By
:
Reyaansh Seth
Category
: Math
Copy Code
var x: Int = 1 repeat(100){ if(x % 2!=0){ println(x) } x=x+1 }