#include <iostream> using namespace std;
int b[10][15] = {{0,1,1,0,0,0,0,1,1,0,0,0,0,0,0}, {0,1,1,3,3,3,3,1,1,0,0,0,0,0,0}, {0,0,0,3,3,3,3,1,1,0,5,5,5,5,0}, {0,0,0,3,3,3,0,1,1,0,5,5,5,5,0}, {0,4,4,4,0,2,2,1,1,0,5,5,5,5,0}, {0,4,4,4,0,2,2,0,2,2,2,6,6,0,0}, {0,0,2,2,0,0,0,0,2,0,2,6,6,5,5}, {0,2,2,1,1,1,0,1,3,3,0,0,0,5,5}, {0,0,0,1,1,1,1,1,3,3,4,4,4,5,5}, {0,0,0,0,0,0,0,0,0,0,4,4,4,4,4}};
//Gibt die Anzahl der Rechtecke in b zurück int f() { }
int main() { cout<<f(); return 0; }
|