/ SeriousOJ /

Record Detail

Compile Error

foo.cc: In function 'int main()':
foo.cc:10:12: error: expected '(' before 'a'
   10 |         if a >b{
      |            ^
      |            (

Code

#include <iostream>

using namespace std;

int main()
{
  
	int a,b;
	cin>>a>>b;
	if a >b{
		a=b;
	}
    
	return (a *(a+1)*((a+a)+1))/ 6;

}

Information

Submit By
Type
Submission
Problem
P1121 Square Counting Challenge
Contest
Brain Booster #7
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-05 14:37:07
Judged At
2024-11-05 14:37:07
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes