0 like 0 dislike
5.3k views
請撰寫一個程式,請使用者輸入身高體重後計算出使用者的BMI值並顯示於螢幕上
[Exercise] Essay (Open question) - asked in 作業 by (18k points)
ID: 11340 - Available when: Unlimited - Due to: Unlimited
| 5.3k views
0 1
Called for Help

121 Answers

0 like 0 dislike
Hidden content!
#include <stdio.h>

#include ** * *** *



main ( )

{
** ** *** * * * * weight,height,BMI;


**** ** * * * * * * *** * ***
*** * **** * * * *** * * * * ** * **** **


** ** * * * * * **** ********* **** ****** ** *
* * **** *** * * * * * *** ** *


* ****** * *** ***** = * * * * **** **
** * *** ** * * ** **** = *** ** ** * ** ****** ** *



}
answered by (-320 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include * ** * **



main()

{
** * * * * *** ** * * height=0, weight=0, BMI=0;


* * ***** * * ** *** * * * ** *** ** *
* * *** * * * ** ** * * ** * * &height);


** ***** * * ** ** ** * * ***** ** * *** *
* ** * ** * * *** * **** *** * ** ** &weight);


* * * ** * *** * * * * ** * * ** * ********
* * *** *** ** * ** ** ** * *** = *** ** *** * * * * *** **



}
answered by (-116 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include * ** * ***



main()

{
* * * * * ** * * w=0 ,h=0,BMI=0;
* **** * **** ** ** **** * *** *** *** ** ** *
* **** * *** ** *** * * ***** ** &w);
** * * **** ** * * ** * * ***** * ******* *
*** *** * *** * * * * ** * &h);
** *** ** * *** ** * *** * ** * *** *** * **** * w, h);
* *** * **** * * * * *
* * ** * * * * ************** * * * * ** ** BMI);

}
answered by (-42 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include *** ** ** **



main()

{
* * * * ** **** * t, bmi, w;


*** ***** * * * * ** * * * * * ** * * ** *
* **** * **** ** * * ** &w);


** * * *** * * * * ******* * ** * * * * * ***
* ** * * ** ** ** ***** * &t);


** ** * ** * ** * = w / ((t)*(t));
***** * * * ******* **** *** ** *** * ** * * * * ** ** bmi);


* * ** * * * * * **** ** ** ** * **

}
answered by (164 points)
0 like 0 dislike
Hidden content!
* * ** **
{
* * * * ** bmi , ** ;
* *** ** *** **** *
* *** ** ****** *

* ******* *** ** *
* ** * ** *** *

= * *** / *** *** * *** *

* *** * * is **** *
}
answered by (-24 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main()

{
** ** ** * ** ** * * ***** * * ** ** *** * ** ** * *
* * *** *** * * ** * * ** * ** * * ** **** ** * *
* *** *** ** ** * * * a,b;
** **** * ** * ** **** ** * ** %f",&a,&b);
** ** ** * *** * * * ** * * * ** ** *
** ** ** ** * * *** * ** ** ** ** * * * * * * **
** * ** ** ** ** * **** * *** ** = * **** **** ** *** **


* * **** * ** * * * * *** 0;

}
answered by (-85 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>



main()

{

    float w=0,h=0,bmi=0;
* * * **** ** *** *** * * *** * * * * *** * **
* * * ** *** ** *** ** ** * ******* ***
* * *** * * ** * * ** ** *** * ** * ***
** * ** * ** * * * *** ** ****** * ** *


* * * ** * * **** *** * * *
* * ** * * * * ** * * * ** * * * * * * **
* **** ** * ** ** ** ***** * * * * **

}
answered by (-136 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>



/*progammer:

  Create date:

  Last * * * * ******* ** * ** ** * * ** *** * *** *

*/

//3213216551321

main()



{
**** * * ** * ** ** ***** * ** ** * *  weight=0, tall=0;
****** ** ** ** * * ** *** **
** *** * ** * * *** * **** ** ** **** * ** ***** ** *** * **** **
**** ** * * *** * * * *** * *** = ** * ** * * ** ** *** * **
*** *** * ** ****** * ** ** * * ** * * * * **** ** *** ***
* ** * * ** **** * * * * ** * *** * * * ***** &weight);
** ** * * * * * ** * *** ** *** * * *** * ******* ** *** *
* ***** *** **** ** * *** *** * *** ** * * ***** ** &tall) ;
* * * ** * ** * * * *
* * * ** * ******* *
* * * * **** * **** * ** *********** = %f" , weight/((tall/100)*(tall/100)));
*** *** * * * ** *
* * * * * * * **** ** ** ** ******* * ** * * ** * **
* *** ** ** *** * *** * ***

}
answered by (-122 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>
** * * *** *** *** ** *** * *** * *



 int main( )

{


* *** * ** ** * ** *** * h=0 , weight=0 , a , b ;
* ** * *** ** ***** ** **** * **** **** ******** ** * ** * * * * *
** ******** ******* * * ****** * **** **** ** * * , &h);
* * * * ** ** * **** *** * * *** * *** ** ** * *
* ** *** ** *** * * ** *** * **** **** * * * * * , &weight);
**** *** * *** * * * * * * ** * ** *** = (h/100)*(h/100);
** * ** ** * ** **** ** ** * * ** = weight / a ;
* * ** * ** * * ** **** * * * * * * * ***** ** *** **
*** ********* * * *** ** * ** * ** ** *** * ** **


* *** * * * ******* *** **** * ****  410523033 陳昱璋  */

}
answered by (-87 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>
* * * ** *** *

{

float g=0,m=0,bmi=0;
**** * **** ** * ****
* *** * * **** ** **
* * **** *** * *** ** *
* * **** ** ** ** ** * *

bmi=g/m/m*10000;
* ** * * * * ** * * * *** * * * * * *** * * * **** *

}
answered by (-276 points)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.69.59.126
©2016-2024

Related questions

0 like 0 dislike
99 answers
[Exercise] Essay (Open question) - asked Sep 21, 2016 in 作業 by Shun-Po (18k points)
ID: 11341 - Available when: Unlimited - Due to: Unlimited
| 4.5k views
2 like 0 dislike
44 answers
[Exercise] Coding (C) - asked Nov 2, 2016 in 作業 by Shun-Po (18k points)
ID: 16861 - Available when: Unlimited - Due to: Unlimited
| 2.3k views
1 like 0 dislike
129 answers
[Exercise] Coding (C) - asked Oct 19, 2016 in 作業 by Shun-Po (18k points)
ID: 14119 - Available when: Unlimited - Due to: Unlimited
| 5.2k views
0 like 0 dislike
117 answers
[Exercise] Coding (C) - asked Oct 13, 2016 in 作業 by Shun-Po (18k points)
ID: 13581 - Available when: Unlimited - Due to: Unlimited
| 4.9k views
0 like 0 dislike
131 answers
[Exercise] Coding (C) - asked Oct 5, 2016 in 作業 by Shun-Po (18k points)
ID: 12291 - Available when: Unlimited - Due to: Unlimited
| 5.5k views
12,783 questions
183,443 answers
172,219 comments
4,824 users