#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貢獻(xiàn)5條經(jīng)驗(yàn) 獲得超0個(gè)贊
#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 關(guān)注
- 1289 瀏覽
添加回答
舉報(bào)
0/150
提交
取消