답안 #1073597

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1073597 2024-08-24T16:25:58 Z Enzo Mini tetris (IOI16_tetris) C++17
컴파일 오류
0 ms 0 KB
#include "tetris.h"
#include<iostream>
using namespace std;
void init(int n) {
}

int position;
int rotation;

void new_figure(int figure_type) {

	if(figure_type == 1){
		position = 0;
		rotation = 1;
	}
}

int get_position() {
	return position;
}

int get_rotation() {
	return rotation;
}

int main(){
	int n,l;
	cin >> n;
	init(n);

	for(int i = 0; i < n; i++){
		cin>>l;
		new_figure(l);
		cout<<get_position()<<" "<<get_rotation();
	}



}

Compilation message

/usr/bin/ld: /tmp/ccGScawb.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccSsyyDa.o:tetris.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status