Initial commit

This commit is contained in:
Brian Bassanetti 2023-05-03 18:42:24 +02:00 committed by GitHub
parent eef454405d
commit c2a2c1aeb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
Tabellina.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdio.h>
int main(){
float i;
int f;
float o=0;
printf("Scrivi un numero: ");
scanf("%f",&i);
printf("Tabellina di %f:\n",i);
for(f=1;f<11;f++){
o=f*i;
printf("%f\n",o);
}
return 0;
}