Last active
May 7, 2020 23:56
-
-
Save abap34/8fdad97a17a00d4cee9fd293528b023e 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
<!DOCTYPE html> | |
<html> | |
<body> | |
<script> | |
var a = Number(prompt("a:")) | |
var b = Number(prompt("b:")) | |
for (var r = a % b; r != 0; r = a % b) { | |
a = b | |
b = r | |
} | |
document.write(b) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment