1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
| #include <stdio.h>
/****************************************************************
calcul
E: t, taille, op, def
S: result
****************************************************************/
int red (int t[], int taille, char op, int def)
{
int result = def;
int i;
for (i = 0; i < taille; i++)
{
switch (op)
{
case '+':
result += t[i];
break;
case '-':
result -= t[i];
break;
case '*':
result *= t[i];
break;
case '/':
if (t[i] != 0)
{
result /= t[i];
}
break;
}
}
return result;
}
int main (void)
{
int t[100];
int def, taille;
char op;
int j, result;
printf("Entrez la taille du tableau : ");
scanf("%d", &taille);
if(taille < 100)
{
printf("Valeurs");
for(j=0;j<taille;j++)
{
scanf("%d", &t[j]);
}
printf("Entrez l'opérateur : \n");
scanf("%c", &op);
printf("def : \n");
scanf("%d", &def);
printf("%c %d\n", op, def);
result = red(t, taille, op, def);
printf("Le résultat est %d \n", result);
}
else
{
printf("erreur\n");
}
return 0;
} |
Partager