07: Output floating point number

Source: Internet
Author: User

Describe

Read into a double-precision floating-point number, respectively, according to the output format "%f", "%f" reserved 5 decimal places, "%e" and "%g" form the output of this integer, each on a separate line output.

Enter a double-precision floating-point number. The output output has four rows:
The first line is a double-precision floating-point number that is output by "%f";
The second line is a double-precision floating-point number that retains 5 decimal places by "%f";
The third line is the double-precision floating-point number that is output by "%e";
Line four is a double-precision floating-point number that is output by "%g". Sample input

12.3456789

Sample output

12.34567912.345681.234568e+00112.3457

#include <stdio.h>int  main () {    double  N;        scanf ("%lf",&N);        printf ("%f\n%.5f\n%e\n%g", n,n,n,n);     return 0 ;}

07: Output floating point number

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.