左右两边


私信TA

用户名:thuscn

访问量:1260

签 名:

等  级
排  名 36566
经  验 417
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校 北京
专  业

  自我简介:

解题思路:

除了for循环,还是用了pow()函数



注意事项:




参考代码:

#include <stdio.h>

#include <math.h>


int main()

{

int a = 2, i, n, s = 0, Sn = 0;


scanf("%d", &n);


for (i = 0; i < n; i++)

{

    s = s + (a*pow(10, i));

    Sn += s;

}


printf("%d\n", Sn);

return 0;

}

 

0.0分

0 人评分

  评论区

  • «
  • »