the first gives the following errors:
air.cpp: In function âvoid airfare(double&, double&)â:
air.cpp:3: error: âcoutâ was not declared in this scope
air.cpp:3: error: âendlâ was not declared in this scope
air.cpp:4: error: âcinâ was not declared in this scope
air.cpp:5: error: âairefareAllowedâ was not declared in this scope
air.cpp:5: error: âairefareCostâ was not declared in this scope
The second funtion i get these errors:
miles.cpp: In function âvoid milage(int, double&, double&)â:
miles.cpp:3: error: âcoutâ was not declared in this scope
miles.cpp:3: error: âendlâ was not declared in this scope
miles.cpp:4: error: âcinâ was not declared in this scope
And the third gives me these errors:
taxi.cpp: In function âvoid taxi(int, double&, double&)â:
taxi.cpp:3: error: âcoutâ was not declared in this scope
taxi.cpp:3: error: âendlâ was not declared in this scope
taxi.cpp:4: error: âcinâ was not declared in this scope
[wm136158@adanew ~]$
I just did and i get these errors for the first:
air.cpp: In function âvoid airfare(double&, double&)â:
air.cpp:4: error: âcoutâ was not declared in this scope
air.cpp:4: error: âendlâ was not declared in this scope
air.cpp:5: error: âcinâ was not declared in this scope
air.cpp:6: error: âairefareAllowedâ was not declared in this scope
air.cpp:6: error: âairefareCostâ was not declared in this scope
For the second i get:
miles.cpp: In function âvoid milage(int, double&, double&)â:
miles.cpp:4: error: âcoutâ was not declared in this scope
miles.cpp:4: error: âendlâ was not declared in this scope
miles.cpp:5: error: âcinâ was not declared in this scope
and the third i get:
taxi.cpp: In function âvoid taxi(int, double&, double&)â:
taxi.cpp:4: error: âcoutâ was not declared in this scope
taxi.cpp:4: error: âendlâ was not declared in this scope
taxi.cpp:5: error: âcinâ was not declared in this scope
I just included "using namespace std;" and get these errors:
1st:
air.cpp: In function âvoid airfare(double&, double&)â:
air.cpp:7: error: âairefareAllowedâ was not declared in this scope
air.cpp:7: error: âairefareCostâ was not declared in this scope
2nd:
miles.cpp: In function âvoid milage(int, double&, double&)â:
miles.cpp:4: error: âcoutâ was not declared in this scope
miles.cpp:4: error: âendlâ was not declared in this scope
miles.cpp:5: error: âcinâ was not declared in this scope
3rd:
/usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../lib64/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
collect2: ld returned 1 exit status
Bookmarks