当我尝试编译此程序时,我不断收到这些错误:
(50):错误C2059:语法错误: '< ='
(50):错误C2143:语法错误 : 失踪 ';'在'{'
(51)之前:错误 C2059:语法错误:'>'
(51):错误 C2143:语法错误:缺少';' 在'{'
之前(62):错误C2059:语法 错误:'else'
(62):错误C2143: 语法错误:缺少';'在'{'
之前
#include <iostream>
#include <string>
#include <cassert>
using namespace std;
class income {
private:
double incm;
double subtract;
double taxRate;
double add;
char status;
public:
void setStatus ( char stats ) { status = stats; }
void setIncm (double in ) { incm = in; }
void setSubtract ( double sub ) { subtract = sub; }
void setTaxRate ( double rate ) { taxRate = rate; }
void setAdd ( double Add ) { add = Add; }
char getStatus () { return status; }
double getIncm () { return incm; }
double getsubtract () { return subtract; }
double getTaxRate () { return taxRate; }
double getAdd () { return add; }
void calcIncome ();
};
//calcIncome
int main () {
income _new;
double ajIncome = 0, _incm = 0;
char status = ' ';
bool done = false;
while ( !done ) {
cout << "Please enter your TAXABLE INCOME:\n" << endl;
cin >> _incm;
if(cin.fail()) { cin.clear(); }
if ( _incm <= 0) { cout << "the income must be greater than 0... \n" << endl; }
if ( _incm > 0) { done = true; _new.setIncm(_incm); }
}
done = false;
char stt [2] = " ";
while ( !done ) {
cout << "Please declare weather you are filing taxes jointly or single" << "\n";
cout << "\t's' = single\n\t'm' = married" << endl;
cin >> stt;
if(cin.fail()) { cin.clear(); }
if ( status == 's' || status == 'm' ) { done = true; _new.setStatus(stt[0]); }
//if else { }
}
return 0;
};
这是家庭作业的一部分所以任何关于改进我的编程的指针都会很棒**
注意:我使用Windows 7和VS express C ++ 2008
答案 0 :(得分:2)
您的变量名为incom
,而不是income
。 income
指的是一个类型,因此当您尝试将该类型与第50行中的值进行比较时,编译器会感到困惑并且您会收到语法错误。
改善编程的一个注意事项是使用更多不同的变量名来避免这种混淆......;)
答案 1 :(得分:2)
income
是您班级的名称。 _incm
是变量的名称。也许你是这个意思(注意使用_incm
而不是income
):
if (_incm <= 0) { cout << "the income must be greater than 0... \n" << endl; }
if (_incm > 0) { done = true; _new.setIncm(_incm); }
您经常使用CamelCase作为类名,使用小写作为实例变量名。由于C ++区分大小写,如果它们使用不同的大小写,它们就不会相互冲突。