Last active
May 16, 2016 01:09
-
-
Save victorvaz/74f48d9c146593cf41e2539d191d5f4c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Faz a soma de 0 a 999 | |
r = 0 | |
for x in range(0, 1000) : | |
r = r + x | |
print("A soma de 0 a 999 é " + str(r)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment