Created
April 26, 2017 16:12
-
-
Save salexkidd/85012da162f93842e339711217759501 to your computer and use it in GitHub Desktop.
test
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
<html> | |
<script type="text/javascript"> | |
var sougaku = 5000; | |
var kaesita = 0; | |
var risoku = 0; | |
for (var year=1; year <= 30; year++) { | |
for (var month=1; month <= 12; month++) { | |
kaesita = kaesita + 20; | |
console.log("---------------"); | |
console.log("Year: " + year); | |
console.log("Month: " + month); | |
console.log("Kaesita: " + kaesita); | |
} | |
} | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment