提交时间:2022-05-28 13:58:42

运行 ID: 40188

#include<bits/stdc++.h> using namespace std; int st,en,x,l=1000000,b; int ix(int a,int x){ int ans=0,b=a; while(a){ ans+=a%10; a/=10; } if(ans==x) return b; return 0; } int main(){ cin>>st>>en>>x; for(int i=st;i<=en;i++){ int f=ix(i,x); if(f>0) l=min(l,f); b=max(b,f); } cout<<l<<endl<<b; return 0; }