Submission #194112

# Submission time Handle Problem Language Result Execution time Memory
194112 2020-01-15T16:18:27 Z juanmartinez111 Mini tetris (IOI16_tetris) C++14
Compilation error
0 ms 0 KB
#include "tetris.h"

void init(int n) {
}

int position;
int rotation;
int figura,cnt=-1;
void new_figure(int figure_type) {
    figura=figure_type;
    cnt++
}

int get_position() {
    if(figura==2){
        if(cnt%2==0)return 0;
        return 2;
    }
	if(figura==1)return 0;
}

int get_rotation() {
    if(figura==2){
        if(cnt%2==0)return 0;
        return 1;
    }
	if(figura==1)return 0;
}

Compilation message

tetris.cpp: In function 'void new_figure(int)':
tetris.cpp:12:1: error: expected ';' before '}' token
 }
 ^
tetris.cpp: In function 'int get_position()':
tetris.cpp:20:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
tetris.cpp: In function 'int get_rotation()':
tetris.cpp:28:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^