[閒聊] t
#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
推
10/02 01:05, , 1F
10/02 01:05, 1F
推
10/03 02:03, , 2F
10/03 02:03, 2F