| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 307969 | 李明灿 | 【C2-1】n到m之间的所有奇数 | C++ | Accepted | 100 | 125 MS | 252 KB | 162 | 2025-01-04 21:54:51 |
#include<iostream> using namespace std; int main(){ int m,n,i; cin>>n>>m; i=n; while(i<=m) { if(i%2==1) cout<<i<<endl; i++; } return 0; }