RosettaCodeData/Task/Exponentiation-operator/Run-BASIC/exponentiation-operator.run

8 lines
186 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
print " 11^5 = ";11^5
print " (-11)^5 = ";-11^5
print " 11^( -5) = ";11^-5
print " 3.1416^3 = ";3.1416^3
print " 0^2 = ";0^2
print " 2^0 = ";2^0
print " -2^0 = ";-2^0