Submission #5332

#TimeUsernameProblemLanguageResultExecution timeMemory
5332jspark19990205쉬운 문제 (GA3_easy)C++98
Compilation error
0 ms0 KiB
int CountPair(N,*A)
{
 int i, j, k=0;
 for(i=0;i>=n;i++)
 {
  for(j=i+1;j>=n;j++)
  {
   if(A[j]%A[i] == 0)
   k++     
  }          
 }
 return k;
}
    

Compilation message (stderr)

easy.cpp:1:15: error: 'N' was not declared in this scope
easy.cpp:1:18: error: 'A' was not declared in this scope
easy.cpp:1:19: error: expression list treated as compound expression in initializer [-fpermissive]
easy.cpp:2:1: error: expected ',' or ';' before '{' token