c语言关于类型转换的问题,编译的时候会出现下面两个警告,应该怎么消除这两个警告?

#include<stdio.h>#defineCPI2.54//centimetersperinches#defineIPF12//inchesperfeetintma... #include <stdio.h>

#define CPI 2.54 //centimeters per inches
#define IPF 12 //inches per feet

int main(void)
{
int feet;
float centimeters, inches;

printf("Enter a height in centimeters:");
while (scanf("%f", ¢imeters) == 1 && centimeters > 0)
{
feet = centimeters / (CPI * IPF);
inches = centimeters / CPI - feet * IPF;
printf("%.1f cm = %d feet, %.1f inches\n", centimeters, feet, inches);
printf("Enter a height in centimeters (<=0 to quit):");
}
printf("Bye!");
return 0;
}

E:\2.c(14) : warning C4244: '=' : conversion from 'double ' to 'int ', possible loss of data
E:\2.c(15) : warning C4244: '=' : conversion from 'double ' to 'float ', possible loss of data
展开
 我来答
kaixingui2012
2011-10-21 · TA获得超过4.2万个赞
知道大有可为答主
回答量:1.4万
采纳率:81%
帮助的人:6396万
展开全部
一、
int feet;
float centimeters, inches;
改成
double feet ,centimeters, inches;
然后所有的%d %f改成%lf

二、
feet = centimeters / (CPI * IPF);
inches = centimeters / CPI - feet * IPF;
改成:
feet = (int)(centimeters / (CPI * IPF));
inches = (float)(centimeters / CPI - feet * IPF);
其实这是编译器的问题,且是警告,不处理也行
松甜恬0Je4ba
2011-10-21 · TA获得超过2.6万个赞
知道大有可为答主
回答量:7475
采纳率:100%
帮助的人:3420万
展开全部
int feet;
float centimeters, inches;
修改为
double feet;
double centimeters, inches;

然后将输出都用 %lf输出
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jyw金ly
2011-10-21 · TA获得超过100个赞
知道答主
回答量:181
采纳率:0%
帮助的人:122万
展开全部
#include <stdio.h>

#define CPI 2.54 //centimeters per inches
#define IPF 12 //inches per feet

int main(void)
{
double feet, inches;
float centimeters;

printf("Enter a height in centimeters:");
while (scanf("%f", ¢imeters) == 1 && centimeters > 0)
{
feet = centimeters / (CPI * IPF);
inches = centimeters / CPI - feet * IPF;
printf("%.1f cm = %d feet, %.1f inches\n", centimeters, feet, inches);
printf("Enter a height in centimeters (<=0 to quit):");
}
printf("Bye!");
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式