7 lines
123 B
C
7 lines
123 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
printf("My BMI is %f", 0.0); // TODO: Replace the 0.0 with the calculation of your BMI
|
||
|
}
|