值不分配给变量? C计算器

时间:2013-06-20 22:55:07

标签: c calculator

我正在尝试在C中创建一个简单的计算器。我目前只有一个问题,那就是当我尝试将我的运算符值分配给输入的值,存储在一个字符数组中时,它会分配它,但是当我退出for循环不再分配。我尝试过使用malloc,但这不起作用。提前致谢

int calculator()
{
int exit;
exit = 1;
while(exit == 1){

    printf("Welcome to the calculator, please enter the calculation you wish to make, if you wish to exit type EXIT\n");

    float num1;
    float num2;
    char operation;
    float ans;
    char string[10];
    int beenhere = 0;

    scanf("%s", &string);
    int result = strncmp(string, "EXIT", 10);

    if(result == 0){
        exit = 0;
    }
    else{
        int length = strlen(string);
        int i;
        for(i = 0; i <= length; i++){
            if(isdigit(string[i]) != 0){
                if(beenhere == 0){
                    num1 = (float)string[i] - '0';
                    beenhere = 1;
                }
                else{
                    num2 = (float)string[i] - '0';
                }
            }
            else{
                operation = string[i];
            }
        }
        printf("num1 %f\n", num1);
        printf("%c\n", operation);
        printf("num2 %f\n", num2);

        if(operation == '+'){
            ans = num1 + num2;
        }
        if(operation == '-'){
            ans = num1 - num2;
        }
        if(operation == '/'){
            ans = num1 / num2;
        }
        if(operation == '*'){
            ans = num1 * num2;
        }
        if(operation == '^'){
            ans = (float)pow(num1,num2);
        }

        printf("Your answer is %f\n", ans);

        }
}
return 0;

}

编辑:我指的是forloop,其中赋值是:operation = string [i];

2 个答案:

答案 0 :(得分:2)

您的问题出在for循环中:

    for(i = 0; i <= length; i++){

由于篇幅为strlen(..),因此无法达到长度,而是length-1

你正在做一个额外的循环,其char为0,将你的指令设置为空值 - 即空字符串。

将您的循环更改为:

    for(i = 0; i < length; i++){

答案 1 :(得分:1)

变化

    for(i = 0; i <= length; i++)

    for(i = 0; i < length; i++)