Rezolvare BAC Informatica 2009 – Varianta 57 – Subiectul al II-lea problema 5
Mai jos puteti gasi rezolvarea problemei 5 de la subiectul II din varianta 57 pentru examenul de bacalaureat din anul 2009
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main() { | |
int n,a,b,i,j,m[25][25]; | |
cin>>n>>a>>b; | |
for (i = 1; i <= n; i++) | |
for (j = 1; j <= n; j++) | |
if (i == a || j == b) | |
m[i][j] = 0; | |
else if (i < a && j < b) | |
m[i][j] = 1; | |
else if (i < a) | |
m[i][j] = 2; | |
else if (j < b) | |
m[i][j] = 3; | |
else | |
m[i][j] = 4; | |
for (i = 1; i <= n; i++) { | |
for (j = 1; j <= n; j++) | |
cout<<m[i][j]<<" "; | |
cout<<'\n'; | |
} | |
return 0; | |
} |
Spor la lucru! Daca aveti intrebari nu ezitati sa le lasati in comentarii, va vom raspunde cat de repede putem 