【问题标题】:Not sure why program doesn't terminate不知道为什么程序不终止
【发布时间】:2013-11-22 07:12:44
【问题描述】:

如果你低头看 main 函数,错误在于第一个输入。 当我输入 \q 时,我的程序并没有像我希望的那样终止。

谁能向我解释为什么会发生这种情况?

我注意到如果我将 fgets 更改为 scanf,那么 \q 部分就可以正常工作,但是(使用 scanf)如果我输入带有任何空格的字符串,我的输入将在空格后终止。

#include <stdio.h>
#include <cstring>
#include <ctype.h>


int count(char *input, char c) {
    int k = strlen(input); 
    return 0; 
}



void subanagram() {
    char yes[50] = "yes"; 
    char no [50] = "no"; 
    char play[100]; 
    char sa[100]; 
    char strin[100];
    char quitt[75] = { '/', 'q', '\0'}; 

    do {
    printf("Would you like to play the sub-anagram game?"); 

    //scanf("%s", play); 
    fgets(play, 100, stdin); 

    if(stricmp(play, yes) == 0) {
        printf("Enter a potential sub-anagram (or /q to quit): "); 
        scanf("%s", sa); 

        if(stricmp(sa, quitt) == 0) {
            break; 
        }

    }




}
while (stricmp(yes, play) == 0 || stricmp(no, play) == 0); 
}

void main() {
    char string[100];
    char pally[75];
    char nospace[100];
    char reversed[100]; 
    char yes[75] = {'y', 'e', 's', '\0'}; 
    char quit[75] = { '\\', 'q', '\0'}; 
    char no[75] = {'n', 'o', '\0'}; 
    char play[50]; 
    int p, i, k, j=0; 

    printf("Enter a word or phrase (or \\q to quit): "); 
    fgets(string, 100, stdin);  
    //scanf("%s", string);

    k = strlen(string); 

    if(stricmp(quit, string) == 0) {
        printf("Thank you for using my program!\n"); 
        return; 
    }

    do {
      printf("Would you like to see if the phrase is a palindrome?"); 
      scanf("%s", pally); 
    } while (stricmp(yes, pally) == 1 || stricmp(no, pally) == 1); 

    if(stricmp(yes, pally) == 0) {


        for(i=0; i<k; i++) {
            if(!isspace(string[i]) == 1) {

                nospace[j] = string[i];
                nospace[j+1] = '\0'; 
                j++;

        }
    }
                strcpy(reversed, nospace); 
                strrev(reversed); 

                if(stricmp(nospace, reversed) == 0) {
                    printf("The phrase %s IS a palindrome.\n", string);
                    subanagram(); 
                }

                else { printf("The phrase %s IS NOT a palindrome.\n", string); 
                    subanagram(); 
                }


    }
        if(stricmp(pally, no) == 0) {
    /*  printf("Would you like to play the sub-anagram game?");
        scanf("%s", play); 
        if(strcmp(play, yes) == 0) {
            subanagram(); 
        }*/
        subanagram();  
    } 
}

【问题讨论】:

  • 请缩进你的代码(顺便说一句,这对于 SO 来说太大了),所以它是可读的并且可以看到相应的块!

标签: c string loops


【解决方案1】:

嗯,在第一次查看这个(太多)大型程序时,我的对称检测器在 subanagram() 中看到:

{ '/', 'q',
"...(or /q to quit): "

主要是:

char quit[75] = { '\\', 'q',

你的问题是:

"When I type \q, my program does not"

【讨论】:

    【解决方案2】:

    '\n'(作为换行符的字符)作为您输入的字符串将包含在fgets(stinrg, 100, stdin) 的情况下,这与scanf("%s", string) 不同。所以,把退出字符串改成char quit[] = "\\q\n"或者你删掉最后一个\n',就确定一定要处理一下,如你所愿。

    【讨论】:

      猜你喜欢
      • 2013-08-04
      • 2014-01-08
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多