Creato il primo esercizio

This commit is contained in:
2014-03-09 18:43:22 +01:00
commit ad2d083824
10 changed files with 55 additions and 0 deletions

9
1_funzioni/funzioni.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef XG_FUNCTION
#define XG_FUNCTION
int somma (int x, int y);
int prodotto (int x, int y);
int potenza (int x, int y);
#endif