提交时间:2022-05-28 14:56:14
运行 ID: 40305
#include<bits/stdc++.h> using namespace std; int l,d,x,a[100],k=0,ans,t,minx=12000,maxx; int main(){ cin>>l>>d>>x; for(int i=l;i<=d;i++){ t=i; while(t){ a[++k]=t%10; t/=10; } for(int j=k;j>=1;j--){ ans+=a[j]; } if(ans==x&&ans<minx){ minx=i; } if(ans==x&&ans>maxx){ maxx=i; } ans=0; k=0; } cout<<maxx<<endl<<minx; return 0; }