2022年6月24日 星期五

bmi

 #include <stdio.h>

#include <stdlib.h>


/* run this program using the console pauser or add your own getch, system("pause") or input loop */


int main(int argc, char *argv[]) 

{

float bmi;

float w,h;

scanf("%f",&h);

scanf("%f",&w);

bmi=w/((h/100)*(h/100));

if(bmi<18.5)

{

printf("bmi=%.2f",bmi);

printf("過輕");

}

else if(bmi>25)

{

printf("bmi=%.2f",bmi);

printf("過重");

}

else

{

printf("bmi=%.2f",bmi);

printf("標準");

}

return 0;

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...