当前位置:  开发笔记 > 编程语言 > 正文

C:使用scanf,多个输入执行操作

如何解决《C:使用scanf,多个输入执行操作》经验,为你挑选了1个好方法。

我正在尝试接受用户的输入并检查它是否等于某个选项('+',' - ','*','x')

    do {
        printf("Select the op.: ");
        scanf("%c", &option);
    } while (option != '+' || option != '-' || option != '*' || option != 'x');
    printf("%c", option);

这是输出:

Select the op.:Select the op.:Select the op.:Select the op.:

正如您所看到的那样,printf("Select the op.: ")多次执行并且我无法理解原因,因此如果我尝试插入,例如+,这是打印输出:

++

提前致谢



1> Lightness Ra..:
while(option != '+' || option != '-' || option != '*' || option != 'x');

这种情况总是如此.

推荐阅读
手机用户2402851335
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有