C language Two integer divides the result is still an integer, not a floating-point number __c language

Source: Internet
Author: User

Note that the result of dividing two integers is still an integer, not a floating-point number.

 

problem Description: Known Celsius temperature (℃) and Fahrenheit temperature (℉) conversion relationship is:

                             

Write a program for converting Celsius temperature (℃) and Fahrenheit temperature (℉) to input Celsius temperature and output Fahrenheit temperature.

input: Randomly enter a Celsius temperature data from the keyboard.

output: Output corresponding Fahrenheit temperature data, retain 3 digits after the decimal point.

Input Sample:

5

Output Sample:

41.000 error code:

#include <stdio.h>
int main () {
	double c,f;
	scanf ("%f", &c);
	f=c*9/5.0+32.0;
	printf ("%.3f", f);
	return 0;
}
The focus seems to be%lf.

#include <stdio.h>
int main () {
	double c,f;
	scanf ("%lf", &c);
	f=c*9.0/5+32.0;
	printf ("%.3lf", f);
	return 0;
}


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.