题解
2024-11-04 02:21:30
发布于:四川
1阅读
0回复
0点赞
灰常灰常简单的题,双重循环
solve返回了个i位a组成的数,只要你愿意也可以放在main里面
#include <iostream>
#include <stdio.h>
#define LL long long
using namespace std;
int solve(int a,int j){
int ans=0;
for(int i=1;i<=j;i++){
ans=ans*10+a;
}
return ans;
}
int main()
{
int a,t;
cin>>a>>t;
int h=0;
for(int i=1;i<=t;i++){
h+=solve(a,i);
}
cout<<h;
return 0;
}
这里空空如也
有帮助,赞一个