fork download
  1. #include <stdio.h>
  2. //
  3. // Mettere qui il prototipo della funzione «interesse».
  4. //
  5. // Mettere qui la descrizione della funzione «interesse».
  6. //
  7. // L'interesse si ottiene come capitale * tasso * tempo.
  8. //
  9. int main (void)
  10. {
  11. double capitale = 10000; // Euro
  12. double tasso = 0.03; // pari al 3 %
  13. unsigned int tempo = 3 // anni
  14. double interessi;
  15. interessi = interesse (capitale, tasso, tempo);
  16. printf ("Un capitale di %f Euro ", capitale);
  17. printf ("investito al tasso del %f%% ", tasso * 100);
  18. printf ("Per %d anni, dà interessi per %f Euro.\n",
  19. tempo, interessi);
  20. getchar ();
  21. return 0;
  22. }
  23.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:14: error: expected ‘,’ or ‘;’ before ‘double’
prog.c:15: error: ‘interessi’ undeclared (first use in this function)
prog.c:15: error: (Each undeclared identifier is reported only once
prog.c:15: error: for each function it appears in.)
prog.c:15: warning: implicit declaration of function ‘interesse’
stdout
Standard output is empty