Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

#include <iostream>

using namespace std;


int main()
{
const double lbs = 2.2;
double kilograms, pounds;
cout<<"This program converts kilogram to pounds:"<<endl;
cout<<"Enter your weight in Kilograms:"<<endl;
cin>>kilograms;
pounds= kilograms*lbs;
cout<<"Your weight in Pounds is :"<<pounds;
return 0;
}

You might also like