#211
Spirala
Să se parcurgă o matrice pătratică în spirală în sensul acelor de ceasornic.
Problema | Spirala | Operații I/O |
spirala.in /spirala.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #51128160 | Utilizator | |
Fișier | spirala.cpp | Dimensiune | 715 B |
Data încărcării | 25 Mai 2024, 16:57 | Scor / rezultat | Eroare de compilare |
spirala.cpp: In function 'int main()': spirala.cpp:6:14: error: 'outusing' was not declared in this scope #define cout outusing namespace std; ^ spirala.cpp:18:43: note: in expansion of macro 'cout' for(j = i ; j <= n - i + 1 ; ++j) cout << a[i][j] << " "; ^ spirala.cpp:6:23: error: expected ';' before 'namespace' #define cout outusing namespace std; ^ spirala.cpp:18:43: note: in expansion of macro 'cout' for(j = i ; j <= n - i + 1 ; ++j) cout << a[i][j] << " "; ^ spirala.cpp:18:48: error: expected primary-expression before '<<' token for(j = i ; j <= n - i + 1 ; ++j) cout << a[i][j] << " "; ^ spirala.cpp:6:14: error: 'outusing' was not declared in this scope #define cout outusing namespace std; ^ spirala.cpp:19:47: note: in expansion of macro 'cout' for(j = i + 1 ; j <= n - i + 1 ; ++j) cout << a[j][n - i + 1] << " "; ^ spirala.cpp:6:23: error: expected ';' before 'namespace' #define cout outusing namespace std; ^ spirala.cpp:19:47: note: in expansion of macro 'cout' for(j = i + 1 ; j <= n - i + 1 ; ++j) cout << a[j][n - i + 1] << " "; ^ spirala.cpp:19:52: error: expected primary-expression before '<<' token for(j = i + 1 ; j <= n - i + 1 ; ++j) cout << a[j][n - i + 1] << " "; ^ spirala.cpp:6:14: error: 'outusing' was not declared in this scope #define cout outusing namespace std; ^ spirala.cpp:20:39: note: in expansion of macro 'cout' for(j = n - i ; j >= i ; j--) cout << a[n - i + 1][j]<< " "; ^ spirala.cpp:6:23: error: expected ';' before 'namespace' #define cout outusing namespace std; ^ spirala.cpp:20:39: note: in expansion of macro 'cout' for(j = n - i ; j >= i ; j--) cout << a[n - i + 1][j]<< " "; ^ spirala.cpp:20:44: error: expected primary-expression before '<<' token for(j = n - i ; j >= i ; j--) cout << a[n - i + 1][j]<< " "; ^ spirala.cpp:6:14: error: 'outusing' was not declared in this scope #define cout outusing namespace std; ^ spirala.cpp:21:43: note: in expansion of macro 'cout' for(j = n - i ; j >= i + 1 ; j--) cout << a[j][i] << " "; ^ spirala.cpp:6:23: error: expected ';' before 'namespace' #define cout outusing namespace std; ^ spirala.cpp:21:43: note: in expansion of macro 'cout' for(j = n - i ; j >= i + 1 ; j--) cout << a[j][i] << " "; ^ spirala.cpp:21:48: error: expected primary-expression before '<<' token for(j = n - i ; j >= i + 1 ; j--) cout << a[j][i] << " "; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Spirala face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.