0

下面是一个简单的 CS 入门课作业问题:

#include <iostream>
#include <string>

int main() {
using namespace std;
int num1; int num2; int num3; int ans; 
char oper;
/* 
cout << "Enter an arithmetic expression:" << endl;
cin >> oper >> num1 >> num2 >> num3;
DEBUGGING
*/

cout << "enter an operator" << endl;
cin >> oper; /* Segmentation error occurs here... */
cout << "enter number 1" << endl;
cin >> num1; 
cout << "enter number 2" << endl;
cin >> num2;
cout << "enter number 3" << endl;
cin >> num3;
cout << "okay" << endl;

if (oper = "+") {
    if (num1 + num2 != num3) {
        cout << "These numbers don't add up!" << endl;
    }
    else {
        ans = num1 + num2;
        cout << num1 << "+" << num2 << "==" << ans << endl;
    }
}
else if (oper = "-") {}
else if (oper = "*") {}
else if (oper = "/") {}
else if (oper = "%") {}
else {
    cout << "You're an idiot. This operator clearly does not exist... Try again " << endl;
}

return 0;
}

我对分段错误并不是很熟悉,所以如果有人能解释我是否做错了什么,那就太棒了。

4

4 回答 4

1

您的代码不能使用 gcc 4.1.2 编译。你用的是什么编译器?此外,“if (oper = '+')”对我来说看起来不正确。您想将“+”分配给那里的变量 oper 吗?

于 2012-09-10T17:56:51.637 回答
0

我在代码中找不到错误。VC++。

#include <iostream>
#include <string>
int main() {
    using namespace std;
    int num1; int num2; int num3=0; int ans; 
    char oper;



    cout << "Enter an arithmetic expression: ( [/ 4 2]  or [+ 1 1] or [- 5 4] )" << endl;
    cin >> oper >> num1 >> num2;

    switch (oper)
    {
        case '+':
                ans=num1+num2 ;
            break;

        case '-':
                ans=num1-num2 ;
            break;

        case '*':
                ans=num1*num2 ;
            break;

        case '/':
                ans=num1/num2 ;
            break;



    }

    cout << "\nans= " << ans<<"\n\n";


    return 0;

}
于 2012-09-10T16:56:58.340 回答
-1

更改以下内容:

if (oper == '+')

else if (oper == '-') {}
else if (oper == '*') {}
else if (oper == '/') {}
else if (oper == '%') {}

使用 ' ' 表示字符, == 表示布尔逻辑!

于 2012-09-10T18:02:16.193 回答
-2

cin将尝试放入多个字符oper,您需要一个 char 向量来保存cin将放入其中的所有字符(包括换行符)

在这种情况下,您可以使用char oper[10]它来处理您正在尝试的一个字符输入。

但是,我建议使用 std::getline(); (http://www.cplusplus.com/reference/string/getline/

于 2012-09-10T16:55:14.923 回答