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

连续数的相加(简单的函数的应用)

时间:2018-09-17 00:05:43      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:put   \n   简单的   NPU   oid   print   ++   std   please   

如 3+4+5+6+7等

 

#include <stdio.h>
void addres(int x,int y)
{
    int i;
    int sum=0;
    for(i=x;i<=y;i++)
    {
        sum=sum+i;
    }
    printf("%d",sum);
}

void main()
{
    int a,b;
    printf("Please input:\n");
    scanf("%d%d",&a,&b);
    addres(a,b);
}

连续数的相加(简单的函数的应用)

标签:put   \n   简单的   NPU   oid   print   ++   std   please   

原文地址:https://www.cnblogs.com/xderbyy/p/9657943.html

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