Submission #145855

# Submission time Handle Problem Language Result Execution time Memory
145855 2019-08-21T07:20:04 Z j07801 일차 함수 (tutorial4) C++14
Compilation error
0 ms 0 KB
#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

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