#512
SortMax
Se dă un vector cu n
elemente, numere naturale distincte. Ordonați crescător elementele situate înaintea valorii maxime din vector și descrescător elementele situate după această valoare.
Problema | SortMax | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #52548853 | Utilizator | |
Fișier | sortmax.c | Dimensiune | 563 B |
Data încărcării | 02 Octombrie 2024, 22:13 | Scor / rezultat | Eroare de compilare |
sortmax.c: In function 'main': sortmax.c:32:6: warning: passing argument 1 of 'fprintf' from incompatible pointer type [enabled by default] fprintf ("%d", v[i]); ^ In file included from /usr/include/stdio.h:937:0, from sortmax.c:1: /usr/include/i386-linux-gnu/bits/stdio2.h:95:1: note: expected 'struct FILE * restrict' but argument is of type 'char *' fprintf (FILE *__restrict __stream, const char *__restrict __fmt, ...) ^ sortmax.c:32:6: warning: passing argument 2 of 'fprintf' makes pointer from integer without a cast [enabled by default] fprintf ("%d", v[i]); ^ In file included from /usr/include/stdio.h:937:0, from sortmax.c:1: /usr/include/i386-linux-gnu/bits/stdio2.h:95:1: note: expected 'const char * restrict' but argument is of type 'int' fprintf (FILE *__restrict __stream, const char *__restrict __fmt, ...) ^ sortmax.c:32:6: warning: format not a string literal and no format arguments [-Wformat-security] fprintf ("%d", v[i]); ^ sortmax.c:35:13: error: 'fout' undeclared (first use in this function) fclose (fout); ^ sortmax.c:35:13: note: each undeclared identifier is reported only once for each function it appears in sortmax.c:11:11: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result] scanf ("%d", &n); ^ sortmax.c:14:12: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result] scanf ("%d", &m); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema SortMax 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ă.