作者seth0921 (最強一行文)
看板FJU-Stat97A
標題[閒聊] t
時間Thu Oct 1 16:11:55 2009
#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
1F:推 terry0968:大決 61.57.151.55 10/02 01:05
2F:推 hipringles:第二堂 118.167.26.169 10/03 02:03