Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - In VB, integers are numbers without decimal points and exponential symbols. What does the exponential symbol mean here?
In VB, integers are numbers without decimal points and exponential symbols. What does the exponential symbol mean here?
It refers to the letter e or d, and its essential meaning is the power of 10, such as 10.

3.734E8

= 3.734 * 10 ^ 8

= 373400000

This is actually a scientific counting method in mathematics.

Floating-point numbers in VB are expressed in this way, while those without decimal point and e (or d) are all integers.