Answer:
Check the explanation
Step-by-step explanation:
C++ PROGRAM 
 
#include <iostream> 
 
using namespace std; 
 
int main() 
{ 
float pounds; 
float kilograms; 
cout<<"Please enter the weight in pounds :"; 
cin>>pounds; 
kilograms=pounds*0.454; 
cout<<"The weight in Kilogram is:"<<kilograms<<"kilograms"; 
return 0; 
}
Kindly check the attached image below for the code output.