Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114353 刘明沅 14小鱼游泳 C++ Compile Error 0 MS 0 KB 269 2025-03-22 11:50:19

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int x, n; cin >> x >> n; int count1 = 0; int count2 = 0; for (int i = 0; i < n; i++) { if((x+i)%7==6||(x+i)%7==0){ count2++; }else{ count++; } } cout<<count1*250; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:12:9: error: no post-increment operator for type
    count++;
         ^