Run ID:50581
提交时间:2023-07-12 14:42:13
#include<iostream> using namespace std; int main(){ int s=0; for(int i=1;i<=100;i+=2){ s+=i; } cout<<s; }