- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
任何人都可以帮我编写一个 C 程序,在不使用任何格式说明符的情况下将摄氏温度转换为华氏温度,只有 2 个精度。当我尝试使用以下代码时,输出中显示垃圾值:
#include<stdio.h>
#include<conio.h>
void main()
{
float celsius,farenheit;
clrscr();
printf("\nEnter the temparature in celsius");
scanf("%f",&celsius);
farenheit=(1.8*celsius)+32.0;
farenheit=farenheit*100;
farenheit=farenheit/100;
printf("The farenheit temcalcparature is:%f",farenheit);
getch();
}
有人可以帮我完成代码吗?
最佳答案
您可以使用rounding functions ,但最好使用格式说明符
#include<stdio.h>
#include<math.h>
void main()
{
float celsius,farenheit;
celsius = 123.12567;
printf("The temparature in celsius:%f\n", celsius);
farenheit=(1.8*celsius)+32.0;
printf("The farenheit temparature is:%f\n",farenheit);
printf("The farenheit temparature is:%0.2f\n",farenheit);
printf("The farenheit temparature is:%d.%d", (int)farenheit, (int)(rint(farenheit*100))%100);
}
输出
The temparature in celsius:123.125671
The farenheit temparature is:253.626205
The farenheit temparature is:253.63
The farenheit temparature is:253.63
关于c - 使用 C 程序将华氏度转换为摄氏度时打印垃圾值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24820417/
如何在 NSString 中表示 Degree Fahrenheit 符号?下面的代码将产生一个度数符号,然后是大写字母 F,但是是否有实际的华氏温度本身?同样,是否有摄氏度? NSString *f
有没有办法将小圆形度数符号包含到 TextView 中?这将用于温度读数,如摄氏度或华氏度。我想知道是否有人以前以编程方式完成过此操作。 最佳答案 有一个可以在 Java 中使用的摄氏度的 Unico
我正在研究一个帮助我在单位之间进行转换的类(class),我需要询问创建此作品的最佳方法。 这是我关于温度的示例代码: public class Temperature { p
我有一个包含大量食谱的简单网络应用程序,我正在努力让使用屏幕阅读器的人可以访问它。 cooking 温度通常简单地表示为 C(摄氏度)和 F(华氏度)。 屏幕阅读器将这些阅读为字母,我认为这有点令人困
iOS 10 增加了用户在“设置”>“常规”>“语言和区域”>“温度单位”下设置“温度单位”选项的功能。 我的应用如何以编程方式确定此设置,以便它可以显示正确的温度单位?我翻遍了 NSLocale.h
iOS 10 增加了用户在“设置”>“通用”>“语言与地区”>“温度单位”下设置“温度单位”选项的功能。 我的应用如何以编程方式确定此设置,以便显示正确的温度单位?我浏览了 NSLocale.h,没有
我是一名优秀的程序员,十分优秀!