Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
12053 | 欧阳漌 | 最大最小 | C++ | 解答错误 | 10 | 0 MS | 252 KB | 255 | 2020-12-26 17:19:21 |
#include<bits/stdc++.h> using namespace std; int main(){ int l,d,x,sum=0,a[101],cnt=0; cin>>l>>d>>x; for(int i=l;i<=d;i++){ sum=i%10; sum+=i/10; if(sum==x){ a[++cnt]=i; } } cout<<a[1]<<endl; cout<<a[cnt]<<endl; return 0; }