#include <stdio.h>

#include <math.h>


int main(){

int hei,wei;

float BMI;

printf("Input the height: ");

scanf("%d",&hei);

printf("Input the weight: ");

scanf("%d",&wei);

BMI=wei/pow(y/100.0,2.0);

printf("The BMI value is: %.2f",BMI);

return 0;

}


이렇게 코드를 짜면




이렇게 에러가 나오는데 어떻게 수정하면 될까요