1. 程式人生 > >習題4-4 特殊a串數列求和 (20 point(s))

習題4-4 特殊a串數列求和 (20 point(s))

習題4-4 特殊a串數列求和 (20 point(s))

給定兩個均不超過9的正整數a和n,要求編寫程式求a+aa+aaa++⋯+aa⋯a(n個a)之和。

輸入格式:

輸入在一行中給出不超過9的正整數a和n。

輸出格式:

在一行中按照“s = 對應的和”的格式輸出。

輸入樣例:

2 3

輸出樣例:

s = 246
#include<stdio.h>
#include<math.h>
int main(){
  int a,n;
  double sum=0,item=0;
  scanf("%d %d",&a,&n);

  for(int i=1;i<=n;i++){
  item+=a*pow(10,i-1);
    
  
  sum+=item;
  }

  printf("s = %0.0lf",sum);
  return 0;
}