Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148251 于墨轩 素数判断 C++ Compile Error 0 MS 0 KB 314 2026-02-10 14:03:30

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char s[10000]; int i,n,f=1; cin>>s>>n; for(i=0;i<=n/2;i++){ if(s[i]!=s[n-1-i]){ f=0; break; } } if(flag){ cout<<"yes"<<endl; }else{ cout<<"no"<<endl; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:14:8: error: 'flag' was not declared in this scope
     if(flag){
        ^