作者cec9069 (澄)
看板C_and_CPP
標題[問題] 以16進位表示身高及年紀
時間Wed Mar 14 00:35:29 2012
開發平台(Platform):
DevC++
問題:
目前只會以整數型態 %d 來表示,如下
----------------------------------------------
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int years=22;
int height=184;
printf("I'm %d years old.\n",years);
printf("My height is %dcm.\n",height);
system("pause");
return(0);
}
----------------------------------------------
想以浮點小數float %f 表示身高及年紀,不知如何轉換..
原PO為初學者,麻煩板友指點了!
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 114.33.25.58
→ diabloevagto:把int改成float,printf改成%f 03/14 00:37
感謝!!
→ azureblaze:16進位是%x 03/14 00:37
不好意思,小弟可能有點搞混.. 就是以 %f 表示即可。
※ 編輯: cec9069 來自: 114.33.25.58 (03/14 00:47)
→ ThomasHuang:這種事情翻書很難嗎?? 03/14 05:46
→ diabloevagto:樓上中肯xd 03/14 18:45