Detalii evaluare #11422543

Rezumat problemă

O firmă are două tipuri de camioane: camioane de tipul 1, care pot transporta câte t1 tone de marfă pe zi, și camioane de tipul 2, care pot transporta câte t2 tone de marfă pe zi.

Știind că firma are n camioane de tipul 1 și m camioane de tipul 2, câte tone de marfă pot transporta camioanele firmei în z zile.

Detalii

Problema Camioane Operații I/O tastatură/ecran
Limita timp 0.1 secunde Limita memorie Total: 64 MB / Stivă 8 MB
Id soluție #11422543 Utilizator Biro Antonia (Antonia_biro)
Fișier camioane.c Dimensiune 399 B
Data încărcării 28 Octombrie 2018, 17:58 Scor / rezultat Eroare de compilare

Evaluare


Mesaj compilare

camioane.c: In function 'citire_date':
camioane.c:4:1: error: parameter name omitted
 void citire_date(int *t1, int *t2, int *n, int *, int *z)

 ^
camioane.c:6:44: error: 'm' undeclared (first use in this function)
     scanf("%d %d %d %d %d", &t1, &t2, &n, &m, &z);

                                            ^
camioane.c:6:44: note: each undeclared identifier is reported only once for each function it appears in
camioane.c: In function 'main':
camioane.c:18:5: warning: passing argument 1 of 'citire_date' makes pointer from integer without a cast [enabled by default]
     citire_date(t1, t2, n, m);

     ^
camioane.c:4:6: note: expected 'int *' but argument is of type 'int'
 void citire_date(int *t1, int *t2, int *n, int *, int *z)

      ^
camioane.c:18:5: warning: passing argument 2 of 'citire_date' makes pointer from integer without a cast [enabled by default]
     citire_date(t1, t2, n, m);

     ^
camioane.c:4:6: note: expected 'int *' but argument is of type 'int'
 void citire_date(int *t1, int *t2, int *n, int *, int *z)

      ^
camioane.c:18:5: warning: passing argument 3 of 'citire_date' makes pointer from integer without a cast [enabled by default]
     citire_date(t1, t2, n, m);

     ^
camioane.c:4:6: note: expected 'int *' but argument is of type 'int'
 void citire_date(int *t1, int *t2, int *n, int *, int *z)

      ^
camioane.c:18:5: warning: passing argument 4 of 'citire_date' makes pointer from integer without a cast [enabled by default]
     citire_date(t1, t2, n, m);

     ^
camioane.c:4:6: note: expected 'int *' but argument is of type 'int'
 void citire_date(int *t1, int *t2, int *n, int *, int *z)

      ^
camioane.c:18:5: error: too few arguments to function 'citire_date'
     citire_date(t1, t2, n, m);

     ^
camioane.c:4:6: note: declared here
 void citire_date(int *t1, int *t2, int *n, int *, int *z)

      ^
camioane.c:20:5: warning: passing argument 1 of 'tone_transportate' makes integer from pointer without a cast [enabled by default]
     printf("%d", tone_transportate(&t1, &t2, &n, &m, &z));

     ^
camioane.c:10:5: note: expected 'int' but argument is of type 'int *'
 int tone_transportate(int t1, int t2, int n, int m, int z)

     ^
camioane.c:20:5: warning: passing argument 2 of 'tone_transportate' makes integer from pointer without a cast [enabled by default]
     printf("%d", tone_transportate(&t1, &t2, &n, &m, &z));

     ^
camioane.c:10:5: note: expected 'int' but argument is of type 'int *'
 int tone_transportate(int t1, int t2, int n, int m, int z)

     ^
camioane.c:20:5: warning: passing argument 3 of 'tone_transportate' makes integer from pointer without a cast [enabled by default]
     printf("%d", tone_transportate(&t1, &t2, &n, &m, &z));

     ^
camioane.c:10:5: note: expected 'int' but argument is of type 'int *'
 int tone_transportate(int t1, int t2, int n, int m, int z)

     ^
camioane.c:20:5: warning: passing argument 4 of 'tone_transportate' makes integer from pointer without a cast [enabled by default]
     printf("%d", tone_transportate(&t1, &t2, &n, &m, &z));

     ^
camioane.c:10:5: note: expected 'int' but argument is of type 'int *'
 int tone_transportate(int t1, int t2, int n, int m, int z)

     ^
camioane.c:20:5: warning: passing argument 5 of 'tone_transportate' makes integer from pointer without a cast [enabled by default]
     printf("%d", tone_transportate(&t1, &t2, &n, &m, &z));

     ^
camioane.c:10:5: note: expected 'int' but argument is of type 'int *'
 int tone_transportate(int t1, int t2, int n, int m, int z)

     ^

Cum funcționează evaluarea?

www.pbinfo.ro permite evaluarea a două tipuri de probleme:

  • probleme la care rezolvarea presupune scrierea unui program complet
  • probleme la care rezolvarea presupune scrierea unei secvențe de program - câteva instrucțiuni, o listă de declarații, una sau mai multe funcții, etc.

Problema Camioane face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:

  • Programul sursă este compilat folosind compilatorul corespunzător. Dacă în urma compilării se obțin erori sau avertismente, acestea sunt afișate în această pagină.
  • Dacă programul a fost compilat, executabilul obținut va fi rulat, furnizându-i-se unul sau mai multe seturi de date de intrare, în concordanță cu restricțiile specifice problemei. Pentru fiecare set de date se obține un anumit punctaj, în raport cu corectitudinea soluției tale.

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ă.