Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7962375
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T05:19:11+00:00 2026-06-04T05:19:11+00:00

What is E+3 ? What exactly happens here? Can we use this approach in

  • 0

What is E+3? What exactly happens here? Can we use this approach in other data types or can we only use it in floating point numbers?

static void Main(string[] args)
{
    double w = 1.7E+3;
    Console.WriteLine(w);
}

Output: 1700

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T05:19:13+00:00Added an answer on June 4, 2026 at 5:19 am

    E notation

    Most calculators and many computer programs present very large and very small results in scientific notation. Because superscripted exponents like 107 cannot always be conveniently displayed, the letter E or e is often used to represent times ten raised to the power of (which would be written as “x 10b“) and is followed by the value of the exponent. Note that in this usage the character e is not related to the mathematical constant e or the exponential function ex (a confusion that is less likely with capital E); and though it stands for exponent, the notation is usually referred to as (scientific) E notation or (scientific) e notation, rather than (scientific) exponential notation (though the latter also occurs). The use of this notation is not encouraged by publications.


    As for your second question:

    can we use this approach in other data type or we can only use it in floating points?

    See the C# spec:

    Real literals [the type of numeric literals that are allowed an E in them] are used to write values of types float, double, and decimal.

    However, you have to cast or suffix the literal appropriately when assigning to anyhting other than a Double, because any literal with an e or E in it is recognized as a Double in Visual Studio. I cannot find where this behavior is specified.

    float f1 = 7E1;     // Compile error. Needs F suffix (7E1F)
    decimal d1 = 8E2;   // Compile error. Needs M suffix (8E2M)
    double d2 = 9E3;    // Works.
    
    int overninethousand = (int)9E3 + 1; // Works
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I hope this is programming-related enough. What exactly happens during the shutdown process of
What exactly will happen to the data segment and text segment if I use
Can anyone explain, what exactly happens in the following line? java.lang.System.out.print(string + i); It
What exactly happens, in terms of memory, when i declare something like: char arr[4];
I have the following issue and I would like to know what exactly happens.
What happens exactly when I launch a .NET exe? I know that C# is
Does anyone know exactly what happens when you change your Zend site at, say,
Exactly what the title says...........any thoughts on other good options for relational database implementation
What exactly is Reflection? I read the Wikipedia article on this subject and I
I just realized that I lack the fundamental knowledge of what exactly happens as

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.