j

Monday, 2 November 2015

Write a program that take user weight in kilogram and convert it into pounds Hense (1 kg=2.2 pounds)



#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
float kg,pound;
cout<<"Enter your weight in kilogram ::";
cin>>kg;
pound=kg*2.2;
cout<<"Enter your weight in pounds "<<pound;
getch();
}

Subscribe to this Blog via Email :