我用turboc编译出来的结果怎么就是hello world 和我的程序完全不一样 求教。
源码如下实现温度与华氏温度的转换.c=(.f-32)*5/9这是计算格式#include<stdio.h>main(){floatfahr,celsius;floatup...
源码如下 实现温度与华氏温度的转换 .c=(.f-32)*5/9 这是计算格式
#include <stdio.h>
main()
{
float fahr,celsius;
float upper,lower,step;
lower = 0;
upper = 300;
step = 20;
fahr = lower;
while (fahr <= 300)
celsius = (fahr - 32) * 5 / 9;
printf("d%/td%,fahr,celsius\n");
fahr = fahr + step;
}
我放在d盘根目录下
但是编译出来居然显示hello world
是哪出问题了? 我是win7系统
求各位大神指教 小弟感激不尽 展开
#include <stdio.h>
main()
{
float fahr,celsius;
float upper,lower,step;
lower = 0;
upper = 300;
step = 20;
fahr = lower;
while (fahr <= 300)
celsius = (fahr - 32) * 5 / 9;
printf("d%/td%,fahr,celsius\n");
fahr = fahr + step;
}
我放在d盘根目录下
但是编译出来居然显示hello world
是哪出问题了? 我是win7系统
求各位大神指教 小弟感激不尽 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询