求按照要求来的答案

来源:4-9 循环结构之for循环(二)

慕慕9487206

2018-05-08 23:54

入两个整数a和n,通过嵌套的for循环语句计算a+aa+aaa+……
aa…a(n个a)之和,例如:
输入输出计算过程
a=2,n=3结果:246   计算过程 2+22+222
a=3,n=4结果:3702   过程23+33+333+3333

写回答 关注

1回答

  • Catcherundersea
    2018-05-10 04:31:43
    #include <stdio.h>
    #include <math.h>
    int main(){
    	int a,n,result;       
    	 result=0;        
    	 a=2;        
    	 n=3;            
    	     for(int i=0;i<n;i++){            
    	         int temp=0;            
    	         temp=(int) pow(10, i)*(n-i)*a;            
    	         result=temp+result;        
    	      }                
    	 printf("%d",result);	
    	 return 0;
    }


C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926025 学习 · 20793 问题

查看课程

相似问题