Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153987 王晏林 19斯诺克比赛 C++ Compile Error 0 MS 0 KB 317 2026-05-24 11:54:08

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main (){ int t[8]={},sum=0,i; for(int i=1;i<=7;i++){ cin>>t[i]; if(t[i]!=0){ i=7; while(t[i]==0)i--; if(i==1){ cout<<1<<endl; return 0; } else sum+=t[1]*(1+i); } for(int j=2;j<=7;j++)sum+=t[j]*j; cout<<sum<<endl; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:4:20: warning: unused variable 'i' [-Wunused-variable]
  int t[8]={},sum=0,i;
                    ^
Main.cc:19:1: error: expected '}' at end of input
 }
 ^