#include <stdio.h>int main(){ double foot,inch,height;? scanf("%d %d;&foot, &inch"); height=(foot+inch/12)*0.3048; printf("你的身高為%d\n,"height); return 0;}
3 回答

Alone_shin
TA貢獻5條經(jīng)驗 獲得超0個贊
#include <stdio.h>
int main()
{
float foot,inch,height;
scanf("%f %f",&foot, &inch);
height=(foot+inch/12)*0.3048;
printf("你的身高為%d\n",height);
return 0;
}
- 3 回答
- 0 關注
- 1270 瀏覽
添加回答
舉報
0/150
提交
取消