Hey guys, I am very new to c++, and im trying to learn and master the basics

Could you guys please tell me what i am doing wrong here.

I want to maintain my current coding format.

This is a simple converting code. Will be accepting inches, and feet, that will be converted into centimeters.

The problem is that line 13, does not compile

Thanks

#include <iostream> 
#include <cmath>
#include <string>

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 << "The quieter you become, the more you will be able to hear"; 
    
    // Entered value by user in feet
    cout << "\n Enter in feet" ;
    cin >> feet ;
    
    // Entered value by user in inches
    cout << "\n 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;
    
}

Recommended Answers

All 5 Replies

You miss a closing quotation mark on line 17, other than that seems fine to me.

commented: The OP said line 13! and He didn't miss any qoute at line 17. -1

You miss a closing quotation mark on line 17, other than that seems fine to me.

when i try to compile, i get an error at line 13

That's because of what you did in line 12.
Why?

int feet ; 0

Should be

int feet=0;

In general, all your variable declarations are wrong. While constants are correct.
After fixing all the variable declarations compiled properly using g++ -Wall The final code is like this:

#include <iostream>
#include <cmath>
#include <string>
 
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;
	double total_inches = 0.0 ;
	double centimeters = 0.0;
	 
	// Conversion Program to centimeters
	cout << "The quieter you become, the more you will be able to hear";
	 
	// Entered value by user in feet
	cout << "\n Enter in feet" ;
	cin >> feet ;
	 
	// Entered value by user in inches
	cout << "\n 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;
 
}
commented: thank you so much, i learnt something new thanks to you +0
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.