Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
38170 | yuzhengxun | 奇数求和 | C++ | 通过 | 0 MS | 248 KB | 179 | 2024-01-25 15:28:40 |
#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%2==1){ s+=i; } } cout<<s; return 0; }