-
-
Save dmalikov/3975775 to your computer and use it in GitHub Desktop.
octave wat
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
octave:13> factorial 0 | |
ans = 1.2414e+61 | |
octave:14> factorial 1 | |
ans = 6.0828e+62 | |
octave:15> factorial 2 | |
ans = 3.0414e+64 | |
octave:16> factorial 10 | |
ans = | |
6.0828e+62 1.2414e+61 | |
octave:17> factorial 100 | |
ans = | |
6.0828e+62 1.2414e+61 1.2414e+61 | |
octave:18> factorial 100000 | |
ans = | |
6.0828e+62 1.2414e+61 1.2414e+61 1.2414e+61 1.2414e+61 1.2414e+61 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment