请老师看看我的磅转化成千克的程序错在哪里,谢谢
#include <iostream>using namespace std;
int main()
{
const float KG_PER_POUND=0.454;
float pounds,
kgs;
cout<<"Enter the weight in pounds:";
cin>>pounds;
float kgs=KG_PER_POUND*poundS;
cout<<"The weight in kilograms is"<<kgs<<endl;
renturn 0;
}