1

我想知道为什么下面的代码与下面的代码不完全一样。代码应该做的是删除多个连续的空格并只显示一个空格:所以“它有效”变成了“它有效”。第一段代码只是让它像“它工作”一样。

不工作

#include <stdio.h>

main(){
    int c;
    int lastspace;

    lastspace = 0;
    while((c = getchar()) != EOF){
        if(c != ' ')
            putchar(c);
            lastspace = 0;
        if(c == ' '){
            if(lastspace == 0){
            lastspace = 1;
            putchar(c);
            }
        }
    }
}

作品

#include <stdio.h>

main(){
    int c
    int lastspace;

    lastspace = 0;
    while((c = getchar()) != EOF){
        if(c != ' ')
            putchar(c);
        if(c == ' '){
            if(lastspace != c){
            lastspace = c;
            putchar(c);
            }
        }
    }
}
4

1 回答 1

5

在你的第一个例子中

if(c != ' ')
    putchar(c);
    lastspace = 0;

不会在语句{}后放置大括号,if因此仅有条件地执行紧随其后的语句。更改缩进并添加大括号表明代码实际上是

if(c != ' ') {
    putchar(c);
}
lastspace = 0;

这就是为什么一些编码标准要求使用{}以下所有控制语句的原因。

于 2013-08-01T16:04:53.990 回答