#2736
Baza De Date
Se citește numărul n
și apoi n
articole cu structura prenume nume salariu vârstă funcție număr_de_telefon email
. Fiecare articol este plasat pe câte o linie, câmpurile sale fiind separate prin câte un spațiu. Câmpurile salariu
și vârstă
conțin numere naturale, celelalte conțin șiruri de caractere.
Se citește apoi un număr natural p
cuprins între 1
și 7
și un caracter c
care poate fi +
sau -
.
Se cere ordonarea celor n
articole în funcție de p
și c
, astfel:
p=1
, ordonarea se face după prenume
; dacă p=2
, ordonarea se face după nume
; dacă p=3
, ordonarea se face după salariu
; dacă p=4
, ordonarea se face după vârstă
; dacă p=5
, ordonarea se face după funcție
; dacă p=6
, ordonarea se face după număr_de_telefon
; dacă p=7
, ordonarea se face după email
;c
are valoarea +
, ordonarea va fi crescătoare, iar dacă c
are valoarea -
, ordonarea va fi descrescătoare;Problema | Baza De Date | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.01 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #55065043 | Utilizator | |
Fișier | baza_de_date.cpp | Dimensiune | 6.61 KB |
Data încărcării | 19 Decembrie 2024, 19:05 | Scor / rezultat | Eroare de compilare |
baza_de_date.cpp: In function 'int main()': baza_de_date.cpp:55:34: warning: unused variable 'auxi' [-Wunused-variable] date auxi; ^ baza_de_date.cpp:56:29: error: 'auxi' was not declared in this scope auxi=articole[i]; ^ baza_de_date.cpp:68:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:74:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:74:21: error: expected ';' before '}' token baza_de_date.cpp:78:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:84:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:84:21: error: expected ';' before '}' token baza_de_date.cpp:88:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:94:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:94:21: error: expected ';' before '}' token baza_de_date.cpp:98:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:104:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:104:21: error: expected ';' before '}' token baza_de_date.cpp:108:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:114:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:114:21: error: expected ';' before '}' token baza_de_date.cpp:117:13: error: 'else' without a previous 'if' else ^ baza_de_date.cpp:123:60: error: 'j' was not declared in this scope if(strcmp(articole[i].prenume,articole[j].prenume)<0) ^ baza_de_date.cpp:135:61: error: 'j' was not declared in this scope if(strcmp(articole[i].nume,articole[j].nume)<0) ^ baza_de_date.cpp:149:60: error: 'j' was not declared in this scope if((articole[i].salariu < articole[j].salariu) ^ baza_de_date.cpp:150:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:156:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:156:21: error: expected ';' before '}' token baza_de_date.cpp:159:59: error: 'j' was not declared in this scope if((articole[i].varsta < articole[j].varsta) ^ baza_de_date.cpp:160:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:166:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:166:21: error: expected ';' before '}' token baza_de_date.cpp:169:65: error: 'j' was not declared in this scope if((strcmp(articole[i].functie,articole[j].functie)<0) ^ baza_de_date.cpp:170:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:176:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:176:21: error: expected ';' before '}' token baza_de_date.cpp:179:74: error: 'j' was not declared in this scope if((strcmp(articole[i].numar_de_telefon,articole[j].numar_de_telefon)<0) ^ baza_de_date.cpp:180:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:186:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:186:21: error: expected ';' before '}' token baza_de_date.cpp:189:63: error: 'j' was not declared in this scope if((strcmp(articole[i].email,articole[j].email)<0) ^ baza_de_date.cpp:190:25: error: expected ')' before '{' token { ^ baza_de_date.cpp:196:21: error: expected primary-expression before '}' token } ^ baza_de_date.cpp:196:21: error: expected ';' before '}' token baza_de_date.cpp:32:10: warning: unused variable 'aux' [-Wunused-variable] char aux[256]; ^ baza_de_date.cpp: At global scope: baza_de_date.cpp:203:5: error: expected unqualified-id before 'for' for(int i = 1; i <= n; i++) ^ baza_de_date.cpp:203:20: error: 'i' does not name a type for(int i = 1; i <= n; i++) ^ baza_de_date.cpp:203:28: error: 'i' does not name a type for(int i = 1; i <= n; i++) ^ baza_de_date.cpp:212:5: error: expected unqualified-id before 'return' return 0; ^ baza_de_date.cpp:213:1: error: expected declaration before '}' token } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Baza De Date 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ă.