เป็นโค้ด หาค่าดัชนีมวลกายคะ
ได้มาจากการเอาโค้ดจากเว็บนู้น เว็บนี้มารวมกัน เลยเกิดปัญหา รันโค้ดไม่ได้คะ
รบกวนตรวจสอบ หน่อยคะ จนปัญญาแล้ว
#include <stdio.h>
#include <conio.h>
void main(){
float iHeight;
float iWeight;
float h;
float bmi;
clrscr();
printf("Program: Body Mass Index (BMI) Calculator\n");
printf("-----------------------------------------\n");
//Input
printf("Input height (cm):");
scanf("%f",&iHeight);
printf("Input weight (kg):");
scanf("%f",&iWeight);
//Calculate
h = iHeight/100;
bmi = iWeight/(h*h);
//Output
printf("BMI = %.2f\n",bmi);
printf("-----------------------------------------\n");
printf("Weight Category: ");
if(bmi<18.5){
printf("Underweight");
}elseif(bmi<=24.9){
printf("Healthy Weight");
}elseif(bmi<=29.9){
printf("Overweight");
}else{
printf("Obese");
}
return(0);
}
คือ ติด Error ตรงคำว่า void main(){ อ่ะค่ะ
หรือว่า ปัญหาอยู่ที่เวอร์ชั่นขอโปรแกรม ตอนนี้ใช้โปรแกรม Dev C++ 5.6.2 คะ
ช่วยตรวจสอบโค้ดภาษาซี หน่อยคะ
ได้มาจากการเอาโค้ดจากเว็บนู้น เว็บนี้มารวมกัน เลยเกิดปัญหา รันโค้ดไม่ได้คะ
รบกวนตรวจสอบ หน่อยคะ จนปัญญาแล้ว
#include <stdio.h>
#include <conio.h>
void main(){
float iHeight;
float iWeight;
float h;
float bmi;
clrscr();
printf("Program: Body Mass Index (BMI) Calculator\n");
printf("-----------------------------------------\n");
//Input
printf("Input height (cm):");
scanf("%f",&iHeight);
printf("Input weight (kg):");
scanf("%f",&iWeight);
//Calculate
h = iHeight/100;
bmi = iWeight/(h*h);
//Output
printf("BMI = %.2f\n",bmi);
printf("-----------------------------------------\n");
printf("Weight Category: ");
if(bmi<18.5){
printf("Underweight");
}elseif(bmi<=24.9){
printf("Healthy Weight");
}elseif(bmi<=29.9){
printf("Overweight");
}else{
printf("Obese");
}
return(0);
}
คือ ติด Error ตรงคำว่า void main(){ อ่ะค่ะ
หรือว่า ปัญหาอยู่ที่เวอร์ชั่นขอโปรแกรม ตอนนี้ใช้โปรแกรม Dev C++ 5.6.2 คะ