strcmp() 有一些问题 - 代码编译但似乎不起作用

Having some problems with strcmp() - code compiles but doesn't seem to work

我试图让用户给我一个运算符(+、-、/、*)。为了确保 he/she 这样做,我写了这段代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>



int main(void)
{
char operator;

printf("Enter operator: (+, -, *, /) \n");

do { scanf("%c", &operator); }
while ((strcmp(&operator, "+") != 0) || (strcmp(&operator, "-") != 0) || (strcmp(&operator, "*") != 0) || (strcmp(&operator, "/") != 0));
}

即使我输入了正确的运算符,最终还是循环继续下去。任何帮助表示赞赏。谢谢:)

编辑:(固定代码)

#include <stdio.h>
#include <stdlib.h>
#include <string.h>



int main(void)
{
char operator;

printf("Enter operator: (+, -, *, /) \n");

    do { scanf(" %c", &operator); }
 while ((strcmp(&operator, "+") != 0) && (strcmp(&operator, "-") != 0) && (strcmp(&operator, "*") != 0) && (strcmp(&operator, "/") != 0));

}

按以下方式声明变量运算符

char operator[2] = { '[=10=]' };

并像

一样使用它
do { scanf("%c ", operator); }
while ((strcmp( operator, "+") != 0) && (strcmp(operator, "-") != 0) && (strcmp(operator, "*") != 0) && (strcmp(operator, "/") != 0));
}

请注意,您可以使用一个函数 strchr

而不是使用多个 strcmp

函数strcmp接受一个以零结尾的字符串,而不是一个字符。因此,使用

strcmp(&operator, "+")

是未定义行为的原因。

您的代码可以像

一样简单
while ((operator != '+') && ...) 

请注意,我还将 || 更改为 &&

您还需要在 "%c" 之前添加一个 space,就像这样 " %c" 这样,如果输入循环重复,它会清除留在 newline输入缓冲区。

编辑:我建议您似乎没有做出正确的更正

do {
    scanf(" %c", &operator);
} while (operator != '+' && operator != '-' && operator != '*' && operator != '/');