Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
38174 | yuzhengxun | 满足条件的数累加 | C++ | 通过 | 0 MS | 244 KB | 180 | 2024-01-25 15:29:44 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m,s=0; cin>>n>>m; for(int i=n;i<=m;i++){ if(i%17==0){ s+=i; } } cout<<s; return 0; }