Last active
September 20, 2020 04:55
-
-
Save karanahuja-android/94ec2c7a9091ccc932b250ee2345c66c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main(){ | |
var x = 1; | |
while (x < 101) | |
{ | |
print (x); | |
x = x + 1; | |
} | |
} | |
1,2,fizz,4,5,fizz,7,8,fizz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment