The idiot's working rule (I always follow this):
Always put brackets in.
'Dim a As Double Big Power Play b+ 2022-01-21 calc 5^262144 and file result in: 5 tothe 4 tothe 3 tothe 2.txt
'a = 5 ^ (4 ^ (3 ^ 2))
'Print 4 ^ 9 ' 262144 so 5^262144 that's all
x = 1
[
x = mult[x,5]
i = a[i,1]
if eq[m[i,10000],0]
, i
fi
if gte[i,262144]
.
.
. x
save x;5 tothe 4 tothe 3 tothe 2.txt
exit
fi
]
' Big Power Play Read 1st and last 20.txt b+ 2022-01-21
fstring = load[5 tothe 4 tothe 3 tothe 2.txt]
l = left[fstring,20]
r = right[fstring,20]
. l
. r
The idiot's working rule (I always follow this):
Always put brackets in.
gentlemen no need to call names, the question I posted is logical and there's a reason, I was perusing the rosetta code and came to this https://rosettacode.org/wiki/Arbitrary-precision_integers_(included)
the question I posted said nothing about operator precedent ambiguity or the need to use parenthesis to eliminate them
QB64 and other Basics treat the ^ operator as left-associative while other programming languages that have an exponentiation operator treat it as right-associative, for example Python and FORTRAN
doing a web search is inconclusive some assert that there's no consensus whether it should be left or right associative while other state that it's right-associative
Mathematica and Maxima treats it as right-associative while Maple gives the error message that the power operator is non-associative
from a mathematical perspective which is right? non-associative or right-associative?