Submission #145855

#TimeUsernameProblemLanguageResultExecution timeMemory
145855j07801일차 함수 (tutorial4)C++14
Compilation error
0 ms0 KiB
#include<stdio.h>
#include<algorithm>
#include "grader.h"
using namespace std;

int gcd(int a, int b){
	while (b != 0){
		int r = a%b;
		a = b;
		b = r;
	}
	return a;
}

int lcm(int a, int b){
	return a * b / gcd(a, b);
}

int solve(){
	int a, b;
	int a1, b1;
	a = f(1);
	b = f(2);
	a = a * 2;
	b1 = a - b;
	a1 = (b - b1) / 2

		Report(a1, b1);
	return 0;
}

Compilation message (stderr)

tutorial4.cpp: In function 'int solve()':
tutorial4.cpp:28:3: error: expected ';' before 'Report'
   Report(a1, b1);
   ^~~~~~