Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96665 黄思翔 12for循环练习III C++ Accepted 1 MS 264 KB 143 2024-11-09 11:39:14

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ for(int b=0;b<=100;b++){ if(b%2==1){ cout<<b<<endl; } } return 0; }