gpt4 book ai didi

c - 何时将 while 循环中的语句括在大括号内?

转载 作者:行者123 更新时间:2023-11-30 21:36:32 25 4
gpt4 key购买 nike

在将华氏温度转换为摄氏温度的程序中

#include <stdio.h>
/* print Fahrenheit-Celsius table
for fahr = 0, 20, ..., 300 */
main()
{
int fahr, celsius;
int lower, upper, step;
lower = 0; /* lower limit of temperature scale */
upper = 300; /* upper limit */
step = 20; /* step size */
fahr = lower;
while (fahr <= upper) {
celsius = 5 * (fahr-32) / 9;
printf("%d\t%d\n", fahr, celsius);
fahr = fahr + step;
}
}

我们将 while 循环中的三个语句括在大括号内......但是在程序中计算字符-

#include <stdio.h>

/* count characters in input*/
main()
{
long nc;
nc = 0;
while (getchar() != EOF)
++nc;
printf("%ld\n", nc);
}

我们不会将 while 循环中的两个语句括在大括号内...为什么这样?

最佳答案

C 允许编写不带括号的单个语句:

for (;;)
statment;

if ()
statment;
else
statment;
// do, while etc...

但是,这是不好的做法 - 因为正如您所看到的 - 这可能会导致困惑

for (;;)
count++;
printf("%d", count);

特别是当代码缩进时,看起来printf语句会在每次循环迭代时执行,但事实并非如此。您应该始终使用括号来避免这种困惑。

根据经验 - 如果忽略这样做,您生成的代码可能看起来更干净,但从长远来看可能很难调试错误,并可能导致忽略简单的错误

关于c - 何时将 while 循环中的语句括在大括号内?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48800240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com