看板 FJU-Stat97A 關於我們 聯絡資訊
#include <stdio.h> #include <stdlib.h> /* 統資二甲 497761326 林政漢 */ int main(void) { int height; double bmi; double weight; printf("請輸入你的身高:>"); scanf("%d",&height); printf("請輸入你的體重:>"); scanf("%lf",&weight); bmi = weight/((height/100.0)*(height/100.0)); printf("你bmi值是:>%f\n",bmi); system("pause"); return(0); } /* printf scanf 整數 int %d %d 小數 double (float) %f %lf 字元 char %c %c */ -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.136.162.154
terry0968:大決 61.57.151.55 10/02 01:05
hipringles:第二堂 118.167.26.169 10/03 02:03