求助一个C语言问题 为什么在VC中老是提示我 warning C4101: 'c' : unreferenced local variable
#include<stdio.h>#defineAZ1.8#defineBZ273.16#defineCZ32.0voidTemp();voidmain(){double...
#include<stdio.h>
#define AZ 1.8
#define BZ 273.16
#define CZ 32.0
void Temp();
void main()
{
double f;
float c,k;
printf("Please input the temperature:\n");
scanf("%f",&f);
Temp();//调用函数
}
void Temp()
{
while(f>-169.4)
{
c=AZ*f+CZ;
k=c+BZ;
scanf("%f",&f);
printf("The three Temperature is:\n");
printf("%.2f is Fahrenheit,%.2f is Celsius,%.2f is Kelvin\n",f,c,k);
}
printf("Done\n");
} 写的是一个三种温度转换显示的 调试中不断显示 warning C4101: 'c' : unreferenced local variable c k f 都提示有这个问题 请求帮助 展开
#define AZ 1.8
#define BZ 273.16
#define CZ 32.0
void Temp();
void main()
{
double f;
float c,k;
printf("Please input the temperature:\n");
scanf("%f",&f);
Temp();//调用函数
}
void Temp()
{
while(f>-169.4)
{
c=AZ*f+CZ;
k=c+BZ;
scanf("%f",&f);
printf("The three Temperature is:\n");
printf("%.2f is Fahrenheit,%.2f is Celsius,%.2f is Kelvin\n",f,c,k);
}
printf("Done\n");
} 写的是一个三种温度转换显示的 调试中不断显示 warning C4101: 'c' : unreferenced local variable c k f 都提示有这个问题 请求帮助 展开
6个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询