Top "Exponent" questions

Exponentiation is a mathematical operation, written as b raised to the power of n, involving two numbers, the base b and the exponent (or power) n.

Does Java have an exponential operator?

Is there an exponential operator in Java? For example, if a user is prompted to enter two numbers and they …

java pow exponent
Is there an exponent operator in C#?

For example, does an operator exist to handle this? float Result, Number1, Number2; Number1 = 2; Number2 = 2; Result = Number1 (operator) Number2; In …

c# operators arithmetic-expressions exponent
SAS function for using 'power' / exponential

I may be missing something obvious, but how do you calculate 'powers' in SAS? Eg X squared, or Y cubed? …

sas exponent
Python and Powers Math

I've been learning Python but I'm a little confused. Online instructors tell me to use the operator ** as opposed to ^ …

python math multiplication exponent
Parse a Number from Exponential Notation

I need to parse the string "1.2345E-02" (a number expressed in exponential notation) to a decimal data type, but Decimal.…

c# .net number-formatting exponent
JSON standard - floating point numbers

I am wondering whether the following floating point notation is a valid JSON notation: "result":{"base_fee":1e-005} or should …

json floating-point standards exponent
how to get exponents without using the math.pow for java

This is my program // ************************************************************ // PowersOf2.java // // Print out as many powers of 2 as the user requests // // ************************************************************ import java.util.Scanner; …

java math pow exponent
How to write a function that can calculate power in Java. No loops

I've been trying to write a simple function in Java that can calculate a number to the nth power without …

java repeat exponent
Why does python add an 'L' on the end of the result of large exponents?

If you've noticed, python adds an L on to the end of large exponent results like this: >>> 25 ** 25 88817841970012523233890533447265625…

python python-2.x exponent
Converting exponential to float

This is my code, trying to convert the second field of the line from exponential into float. outputrrd = processrrd.communicate() (…

python floating-point exponent