Top "Scientific-notation" questions

Scientific notation is a way of writing numbers.

Reading Scientific Notation in C

I am trying to read a file that has the following contents: 1.0000000e+01 2.9265380e+03 5.0821200e+02 4.3231640e+01 2.0000000e+01 1.0170240e+04 9.2798610e+02 4.0723180e+01 3.0000000…

c scientific-notation
Java: Why can't I declare integer types using scientific notation?

I can easily read 2e15 as "two quadrillion" at a glance, but for 2000000000000000 I have to count the zeroes, which …

java integer long-integer scientific-notation exponent
How to change the format of .describe() output?

I put .describe() to a Dataframe, the output doesn't look nice. I want the output to show the whole number …

python pandas dataframe format scientific-notation
Is there a way to suppress scientific notation for <input type="number">?

I'd like to input numbers with up to eight decimal points with an <input> element. However, if I …

html floating-point html-input scientific-notation
Python scientific notation using D instead of E

Some results file produced by Fortran programs report double precision numbers (in scientific notation) using the letter D instead of …

python locale scientific-notation
scientific notation's type

int s = 1e9; What is type of 1e9 and how precise is it? (Is it exactly equal to 1000000000?) Printing type …

c++ types scientific-notation
How do you store scientific notation numbers in MySQL

I want to store scientific notation numbers in MySql. I've saved them to a field which has datatype decimal. The …

mysql types scientific-notation
Extract scientific number from string

I am trying to extract scientific numbers from lines in a text file. Something like Example: str = 'Name of value 1.111…

python string floating-point scientific-notation
How do I force Python to keep an integer out of scientific notation

I am trying to write a method in Python 3.2 that encrypts a phrase and then decrypts it. The problem is …

python floating-point format fixed-point scientific-notation
Formatting n significant digits in C++ without scientific notation

I want to format a floating point value to n significant digits but never using scientific notation (even if it …

c++ format scientific-notation boost-format