Hey guys, I am very new to c++, and im trying to learn and create basics codes.
Could you guys please tell me what i am doing wrong here.
I want to maintain my current coding format.
Thanks
#include #include #include using namespace std;
int main()
{
const double feet_to_inch = 12; // conversion from feet to inches
const double inch_to_centi = 2.54; // conversion from inches to centimenters
int feet ; 0
double inches ; = 0.0, total_inches = 0.0 ;
double centimeters ; 0.0
// Conversion Program to centimeters
cout << "hello world";
// Entered value by user in feet
cout << "
Enter in feet" ;
cin >> feet ;
// Entered value by user in inches
cout << "
Enter in inches" ;
cin >> inches ;
//Calculate number of inches
total_inches = inches + feet * feet_to_inch ;
// Convert to centimeters
centimeters = total_inches * inch_to_centi ;
// Output results
cout << "/n The Result is :" << centimeters;
char c;
cout << "/n Press anything to Exit" ;
cin >> c;
return 0;
}[hr]
Comments
This is just confusing as to how you could get some of it right and then in the following line do it all wrong.
Correct:
[code]
const double feet_to_inch = 12;
const double inch_to_centi = 2.54;
[/code]
Incorrect:
[code]
int feet ; 0
double inches ; = 0.0, total_inches = 0.0;
double centimeters ; 0.0
[/code]
Fix:
[code]
int feet = 0;
double inches = 0.0, total_inches = 0.0 ;
double centimeters = 0.0;
[/code]