Toggle navigation
Courses
Questions
Tags
Users
AC 20160921 作業1
0
like
0
dislike
7.1k
views
請撰寫一個程式,請使用者輸入身高體重後計算出使用者的BMI值並顯示於螢幕上
[Exercise]
Essay (Open question)
-
asked
Sep 21, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 11340 -
Available when:
Unlimited
-
Due to:
Unlimited
|
7.1k
views
comment
0
1
Called for Help
Please
log in
or
register
to add a comment.
121
Answers
0
like
0
dislike
Hidden content!
#include * ** * *
#include ** ** * * *
int main()
{
**** *** * * ** * * t, bmi, w;
** ** * ***** * * ** * **** * ** ** *
** * * * *** ****** *** * * ** * *
***
* * * * * * ** ** = w / * * ** * **
** * *** * *** *** * ** **** ** ** bmi);
* ** * * * *** * ** 0;
}
answered
Oct 23, 2016
by
410523009
(
180
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include ** * **** *
#include * ** * *
int main()
{
**** * ** * * t, w, b;
*** * * * *** * ** ** *
*** ** * ***** *** ** ** ** *** ** * * **** * * &t, &w);
* * ** * *** ** * ***** *** = t/(w*w);
** ** * ** ** * * * ***** * ** *** * **** b);
** * *** ** * * ** ***
*** * ** * *** ** * ** *
*** * * ** *** * * * * * * 0;
}
answered
Oct 19, 2016
by
410211222
(
-186
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include ** ****** * *
#include * * *
int main()
{
* ** ** * *** * * t, w, b;
** ** * ***
**** ** * * * **** * ** *** ****** * ** *** &t, &w);
* * * * *** * ***** *** = t/(w*w);
**** *** ** ***** *** *** ** *** *** * ** *** b);
* ** * ** ** *
** ** * * *** ****
* * ****** **** * ** * * * * 0;
}
answered
Oct 19, 2016
by
410211222
(
-186
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
**** * ** ** ** *
* ***** * * * **
int main()
{
* * * * ** * * ** **** weight,height,BMI;
* * * ** * ******* ****** *** * ******
* * * * ****** * * *** ** ** * ** * * ** * **
* ** ** **** * * ** * * = weight / (height / 100 ) / (height / 100 );
* ** * ** ** * * * * * * *** *
* ******** * * **** * ** * * *** * ***
***** * * **** * * *** * 0;
}
answered
Oct 19, 2016
by
m8f2617
(
-103
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
*** * **** * **** **
* * ** **** * ** *
main()
{
******* *** * * * * ** * * ** weight=0 , bmi=0;
*** *** ** * ** ** * *** * * * * *** * ** ** *
** *** * ******* ** * ** * * * * *** * ** *
* * * **** ** ** * ** = weight / (height / 100 * height / 100);
***** * * * ******** **** ** * * * ** *
}
answered
Oct 19, 2016
by
m8f2617
(
-103
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
** * * * ***
* * **** **** * * *
int main()
{
** ** * ** * ** * ** * * *** * **
** **** * * * **** ** ***** * **** * *** ** * *****
* ** ** ** ** * * * * * ** ** * *** * * ***
** * * * * ** **** = weight / (height / 100 ) / (height / 100 );
* * * * **** * * * *** ** * ("BMI = %f",BMI);
* *** * * * ** *** ********* * **** ***
** * * *** ***** * * 0;
}
answered
Oct 19, 2016
by
m8f2617
(
-103
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include *** * * *
#include * * * * ** ***
main()
{
*** * ***** *** * *** high , weigh , bmi ,high2;
***** ** *** * * * * ** ** *** * * * ** ** *
* * * ** * ***** ** * **** * * **
* ** *** * * ** ******* * ** ** * ** * *** ** **
* ** *** *** *** *** ** * *** ** * ** * * * *** * **
*** * * ** **** * * ** *** ** = high/100;
* ** ** *** **** * * * = weigh / (high2 *high2);
* * * * ** * * ****** * * bmi);
}
answered
Oct 19, 2016
by
m8f2617
(
-103
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include *** * ** *
main()
{
** * * ** ** *** * h=0, w=0, bmi=0;
* * **** * ** ** * ** * * **** * *** enter your high:");
*** **** * *** ** * * *** * *
* ** *** * **** * * * * ** * ** enter your * ** * ** *
***** **** * * **** * ***** * * * * * ***
***** ** ** ****** = **** * ****
** * ***** * **** *** ** *** BMI ** * * *** * **
return 0;
}
answered
Oct 19, 2016
by
CHONGYAOWEI
(
-52
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include * * ** * *
int main()
{
**** ** **** h=0, w=0, bmi=0;
* ** ******** * * ** ** * ** *** * *
* ** * * * * **** * * *********** ******** **
*** * * ** * ** * * * ** * * * *
* **** ** * * * * ** * *** *** * ****** **
* ** * ** * ** * = w/((h/100)*(h/100));
* * * **** *** ** ** * BMI ** * *
return 0;
}
answered
Oct 19, 2016
by
CHONGYAOWEI
(
-52
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include ** *** * * * *
int main()
{
* * * * ** h=0, w=0, bmi=0;
* ***** **** ** * ****** * * * **** * * ***
** ** * * ** * ****** ** ** * * *
* * * *** * ** *** ** * *** * *** **
**** ** * * ** * * **** * * *** *** ***
* ** *** * * ** * = w/((h/100)*(h/100));
* * * * * ** *** * ** BMI ****** * **
return 0;
}
answered
Oct 19, 2016
by
CHONGYAOWEI
(
-52
points)
ask related question
comment
Please
log in
or
register
to add a comment.
Page:
« prev
1
2
3
4
5
6
...
13
next »
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English
中文
Tiếng Việt
IP:172.70.130.235
©2016-2025
Related questions
0
like
0
dislike
99
answers
AC 20160921 作業2
[Exercise]
Essay (Open question)
-
asked
Sep 21, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 11341 -
Available when:
Unlimited
-
Due to:
Unlimited
|
6.1k
views
2
like
0
dislike
44
answers
AC 20161102 作業1
[Exercise]
Coding (C)
-
asked
Nov 2, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 16861 -
Available when:
Unlimited
-
Due to:
Unlimited
|
3.5k
views
1
like
0
dislike
129
answers
AC 20161019 作業 1
[Exercise]
Coding (C)
-
asked
Oct 19, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 14119 -
Available when:
Unlimited
-
Due to:
Unlimited
|
7.9k
views
0
like
0
dislike
117
answers
AC 20161013 作業 1
[Exercise]
Coding (C)
-
asked
Oct 13, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 13581 -
Available when:
Unlimited
-
Due to:
Unlimited
|
6.7k
views
0
like
0
dislike
131
answers
AC 20161005 作業 1
[Exercise]
Coding (C)
-
asked
Oct 5, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 12291 -
Available when:
Unlimited
-
Due to:
Unlimited
|
7.6k
views
12,783
questions
183,442
answers
172,219
comments
4,824
users