Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96611 黄思翔 12for循环练习III C++ Compile Error 0 MS 0 KB 175 2024-11-09 11:28:28

Tests(0/0):


Code:

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


Run Info:

Main.cc: In function 'int main()':
Main.cc:6:9: error: lvalue required as left operand of assignment
   if(a%2=1){
         ^