0

我正在尝试构建一个在用 C 编写的命令行中运行的程序,如下所示:

int main(void){

    char code[25];
    char *fullCmd;
    char *command;
    char *extraCmd;

    bool stop = false;
    int loop = 1;

    while (loop == 1){

        printf("C:\\>");
        scanf("%[^\n]",code);

        fullCmd = strdup(code);
        command = strtok(fullCmd, " ");
        extraCmd = strtok(NULL, " ");
        handStatement(code, command, extraCmd); 

        if(strcmp(command,"exit\n") == 0 || strcmp(command, "quit\n") == 0){
            loop = 0;
            printf("Program Terminated\n");
        }
    }

    return 0;
}

HandStatement()是我的把手之一。但是这里的问题是while循环不会停止让我在执行时输入另一个命令handStatement()。如果我不使用while,我可以一次执行一个命令。

4

2 回答 2

3

您的通话中不需要尾随\n字符。strcmp

    if(strcmp(command,"exit") == 0 || strcmp(command, "quit") == 0){
        loop = 0;
        printf("Program Terminated\n");
    }

此外,您需要从标准输入刷新换行符:

while (loop == 1){
    printf("C:\\>");
    scanf("%[^\n]",code);
    fullCmd = strdup(code);
    command = strtok(fullCmd, " ");
    extraCmd = strtok(NULL, " ");
    handStatement(code, command, extraCmd);
    if(strcmp(command,"exit") == 0 || strcmp(command, "quit") == 0){
        loop = 0;
        printf("Program Terminated\n");
    }
   /* Flush whitespace from stdin buffer */
   while(getchar() != '\n');
}
于 2013-08-04T09:30:26.590 回答
0

如果您从代码中删除“\n”,它将起作用。除非您的终止字符已更改,否则它实际上不会将换行符放入字符串中,因此您的 strcmp() 将始终返回不相等。

于 2013-08-04T12:11:27.233 回答