#include using namespace std; int level = 1; int current_line = 2; int next_multiple_of_ten = 10; int score = 1200; //if current line is equal to or higher than the next multiple of then the level should increase void level_up_check(int line){ if(line>=next_multiple_of_ten){ level++; next_multiple_of_ten = next_multiple_of_ten + 10; } } int st_stack(int max_level){ int tetris_clear_counter = 1; while(level> max_level; cout << st_stack(max_level) << endl; return 0; }