gpt4 book ai didi

c - n 个数字的总和

转载 作者:太空宇宙 更新时间:2023-11-04 01:57:18 26 4
gpt4 key购买 nike

#include <stdio.h>

int main()
{
int m,i,sum,num;

i=0;
sum=0;
scanf("%d ",&m);
while(i<m){
scanf("%d ",&num);

sum=sum + num;

i=i+1;
printf("Value of sum= %d\n",sum);
//continue;
}
printf("Sum= %d ",sum);
}

在上面的代码中,它应该显示 n 个数字的总和。但在我的代码中,它采用了 m 的一个额外值(m 是计算总和所采用的值的数量)。

例如,如果我将 m 取为 3,它需要 4 个输入并显示 3 的总和。

最佳答案

正如其他人(@BLUEPIXY 和@BillDoomProg)已经在评论中指出的那样,您的问题是 scanf 格式字符串中的空格。还要检查 this answer .

改变你的 scanf 格式字符串:

scanf("%d ",&m);
...
scanf("%d ",&num);

收件人:

scanf("%d", &m);
...
scanf("%d", &num);

只需删除空格即可。

扫描()

来自手册

The format string consists of a sequence of directives(...)

A directive is one of the following:

A sequence of white-space characters (space, tab, newline, etc.; see isspace(3)). This directive matches any amount of white space, including none, in the input.

另请注意,stdin 已被缓冲,因此结果与您预期的略有不同:

man stdin

Notes

The stream stderr is unbuffered. The stream stdout is line-buffered when it points to a terminal. Partial lines will not appear until fflush(3) or exit(3) is called, or a newline is printed. This can produce unexpected results, especially with debugging output. The buffering mode of the standard streams (or any other stream) can be changed using the setbuf(3) or setvbuf(3) call. Note that in case stdin is associated with a terminal, there may also be input buffering in the terminal driver, entirely unrelated to stdio buffering. (Indeed, normally terminal input is line buffered in the kernel.) This kernel input handling can be modified using calls like tcsetattr(3); see also stty(1), and termios(3).

那么,让我们逐步检查您的程序。

您的程序开始运行,您输入数字 2。这是输入缓冲区的样子:

2\n

scanf("%d ", &m) 将 2 分配给 m 变量并开始尝试匹配空格。它获得了 NLEOL。控件仍在这个 scanf 中,因为它刚刚匹配了一个换行符(被认为是一个空白)并且正在等待匹配更多,但是它得到了 End-Of-Line , 因此当您键入时它仍在等待:

1\n

然后再次读取 stdin 并意识到输入流中的下一个字符不是空格并返回(它的格式字符串条件已完成)。此时,您进入循环,您的下一个 scanf("%d ",&num) 被调用,它想要读取一个整数,它确实这样做了:它读取 1 并将其存储在 num 变量中。然后它再次开始匹配空格并获取换行符并重复上述模式。然后当你输入:

2\n

第二个 scanf 得到一个不同于空白的字符并返回,所以你的循环范围继续执行打印当前的 sum。不满足循环中断条件,所以重新开始。它调用了scanf,它有效地将一个整数读入变量,然后模式重演......

3\n

它正在等待一个空白,但它得到了一个字符。所以你的scanf 返回现在满足循环中断条件。这是您退出循环的地方,打印整个 sum 并得到 weired felling that it“添加”了 3 个数字,但总和仅添加了前 2 个(如您所愿首先)。

您可以通过在代码中添加一个简单的代码来检查卡在 stdin 中的 3:

#include <stdio.h> 

int main()
{

int m, i, sum, num;
char c;

i = 0;
sum = 0;
scanf("%d ", &m);

while (i < m) {
scanf("%d ", &num);

sum = sum + num;

i = i + 1;
printf("Value of sum= %d\n", sum);
}

while((c = getchar()) != '\n')
printf("Still in buffer: %c", c);

return 0;
}

这将输出(当然有上述输入):

$ ./sum1
2
1
2
Value of sum= 1
3
Value of sum= 3
Still in buffer: 3

关于c - n 个数字的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32395670/

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