萌萌哒的大耗子


私信TA

用户名:mmdddhz

访问量:246

签 名:

我是,火车王!

等  级
排  名 5137
经  验 1585
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校 BUU
专  业 软件工程

  自我简介:

TA的其他文章

解题思路:先转换成从0到y-x,这样固定了从13加15*n的数,然后计数x,求和输出。

注意事项:

参考代码:

#include <stdio.h>

#include <stdlib.h>


/* run this program using the console pauser or add your own getch, system("pause") or input loop */


int main(int argc, char *argv[]) {

int x,y,i;

scanf("%d%d",&x,&y);

int nums = -1,sum = 0; //计数,总数 

for(i = 13;i <= y - x;i = i + 15){

sum += i;

nums++;

printf("%d",sum + nums * x);

return 0;

}



 

0.0分

1 人评分

  评论区

  • «
  • »