美文网首页
练习2-6-5:求 a +aa + aaa + aaaa + .

练习2-6-5:求 a +aa + aaa + aaaa + .

作者: 笑笑xx | 来源:发表于2022-07-20 18:46 被阅读0次

    #include <stdio.h>

    int main()

    {

        int a,n;

        long long s=0,t=0;

        printf("输入基数a的值=");

        scanf("%d",&a);

        printf("输入项数n的值=");

        scanf("%d",&n);

        for(;n>0;n--)

        {

            t=t*10+a;

            s+=t;

        }

        printf("计算结果=%11d\n",s);

        return 0;

    }

    相关文章

      网友评论

          本文标题:练习2-6-5:求 a +aa + aaa + aaaa + .

          本文链接:https://www.haomeiwen.com/subject/glkyirtx.html