标题:这两个程序代码到底有什么不同?
取消只看楼主
churichenxi
Rank: 1
等 级:等待验证会员
帖 子:9
专家分:0
注 册:2012-6-16
结帖率:100%
 问题点数:0 回复次数:2 
这两个程序代码到底有什么不同?
这里有两个程序,大家帮我看看,到底有什么不同?怎么运行结果会不一样?

正确的程序:


/* Program 4.3   Sum the integers from 1 to a user-specified number */
#include <stdio.h>

int main(void)
{
  long sum = 0L;                      /* Stores the sum of the integers      */
  int count = 0;                      /* The number of integers to be summed */

  /* Read the number of integers to be summed */
  printf("\nEnter the number of integers you want to sum: ");
  scanf("%d",&count);

  /* Sum integers from 1 to count */
  for(int i = 1 ; i <= count ; i++)
    sum += i;

  printf("\nTotal of the first %d numbers is %ld\n", count, sum);
  return 0;
}


错误的程序:


/*数字汇总*/
#include <stdio.h>

int main(void)
{
    long sum = 0L;
    int count = 0;

    printf("\n请输入你想要汇总的整数");
    scanf(" %d", &count);

    for(int i = 1 ; i <= count ; i++)
        sum +=1;
    printf("\n%d个数的总和为%ld\n", count, sum);
    return 0;
}


当输入10时,结果应为55。可是错误的程序结果还是为10.
搜索更多相关主题的帖子: long void include number count 
2012-06-23 15:18
churichenxi
Rank: 1
等 级:等待验证会员
帖 子:9
专家分:0
注 册:2012-6-16
得分:0 
呵呵 我发现问题了,sum +=i 我写成了 sum +=1了。
2012-06-23 15:25
churichenxi
Rank: 1
等 级:等待验证会员
帖 子:9
专家分:0
注 册:2012-6-16
得分:0 
回复 2楼 zd1505675319
谢谢啊! 我看出来了~
2012-06-23 15:25



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-372114-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029012 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved