码迷,mamicode.com
首页 > 其他好文 > 详细

The sum of numbers form 0 to n.(20.9.2017)

时间:2017-09-24 20:31:53      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:form   number   int   ++   printf   div   数值   数字   print   

#include <stdio.h>

int main() {
    int a,b,sum;
    printf("输入一个数字: ");
    scanf("%d",&a);                //输入数字a
    sum = 0;
    for(b=1;b<=a;b++){            //设置b=1 使用for loop,用b相加,一直加到输入的数字a的数值
        sum = sum + b;
    }
    printf("%d",sum);
}

 

The sum of numbers form 0 to n.(20.9.2017)

标签:form   number   int   ++   printf   div   数值   数字   print   

原文地址:http://www.cnblogs.com/RLeeH/p/7588227.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!