文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C程序练习-计算数值之和

C程序练习-计算数值之和

时间:2010-07-26  来源:chengxiaopeng

    题目:求s=a aa aaa aaaa aa...a的值,其中a是一个数字。例如2 22 222 2222 22222(此时共有5个数相加),几个数相加有键盘控制。     看到这个题目后,我们可以看到每次都是在上次迭代的数乘以10加上输入的那个输入作为这一个数字进行求和的运算。因此我们的程序,也主要就是构造迭代后的数字。代码如下:

#include <stdio.h>

int main(int argc,int *argv[])
{
    int a,n,count = 1;
    int sum = 0,temp;
    printf("please input a,n:");
    scanf("%d,%d",&a,&n);
    temp = a;
    while (count <= n)
    {
          sum += temp;
          temp = temp * 10 + a;
          count ++;
    }
    printf("the result is :%d",sum);
    system("pause");
    return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载