Quantcast
Channel: Programmers Heaven Forums RSS Feed
Viewing all articles
Browse latest Browse all 2703

if statment help

$
0
0
I am wanting to write a program for a BMI calculator that eventually will record details for several entries.

However to start with I need to be able to just complete one calculation.

Below is my code which works up to the if statement what I am trying to do is once I have completed the calculation be able to take that result and use the if statement to indicate if the result is normal, under or over.

I don't know how to take the result and put it into the if statement.

  #include <stdio.h>
#include <math.h>
int main()
{
   float height, weight,bmi;
   printf("Enter Weight in Kg's and Height in METERS  \n");
   scanf("%f%f", &weight, &height );

   bmi = weight/(height*2);
 

   printf("Your BMI is %.2f\n",bmi);
   
   scanf("%");
   
  if("%f"<=25){
                printf("your weight is normal\n");
}
return(0);


Viewing all articles
Browse latest Browse all 2703

Trending Articles