程序能运行~但无按我的想法运行 C
这是个计算温度的问题........程序能运行.
但是不知道为什么 输入了时间之后 一按回车 就结束计算了~...分钟还没输入呢......而且.要是在第一个名称输入的时候 输入了3>个字符 程序也会自动结束的。。。。。。。希望各位大虾念在小弟孤苦无依..独自学习的艰辛...帮助下我0.0 不胜感激
#include<stdio.h>
main(void)
{
char first,middles,last;
double t_b,
T;
double times_first,
times_second;
printf("Please type in 3 initials and press return>");
scanf(" %c%c%c",&first,&middles,&last);
printf("Helo %c%c%c,Let’s see the temperature in it.\n",first,middles,last);
printf("The hour >");
scanf(" %.2lf",×_first);
printf("The minutes >");
scanf(" %.2lf",×_second);
t_b=times_first+(times_second/60);
T=4*(t_b*t_b)/(t_b+2)-20;
printf("\n The temperature in the freezer is %.2lf",T);
return(0);
}