Infolinks - Earn Easy Money

Saturday, April 4, 2015

C++ Program to convert feets into inches

#include <conio.h>
#include <iostream>
using namespace std;
int main ()
{
float feet,inches;
cout<<" ENTER LENGHT IN INCHES\n";
cin>> inches;
feet=inches/12;
cout<<" LENGTH IN FEET is \n";
cout<< feet;
return 0;
}

No comments:

Post a Comment

Must drop your comments about post.