entonces el codigo me quedarias asi no?
Código:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
int x[6];
int suma=0;
int mayor,i;
printf("\n\t\t*** PROGRAMITA DE LA SUMA DE LOS 6 NUMEROS ***\n");
for(i=0; i<6; i++)
{
printf("\nIntroduzca el numero %i y luego pulse intro:\t",i+1);
scanf("%i",&x[i]);
suma+=x[i];
}
printf ("Suma= %i",suma);
printf("\n\t\t*** PROGRAMITA EL MAYOR ***\n");
mayor=x[0];
for (i=1 ; i<6 ; i++)
{
if ( x[i]>mayor)
{
mayor=x[i];
}
}
printf("El Mayor es: %d",mayor);
printf("\n\t\t*** PROGRAMITA LOS MULTIPLOS ***\n");
for(i=0;i<6;i++)
{
if (x[i] % 2 == 0 ) printf("%d es multiplo de 2",x[i]);
if (x[i] % 3 == 0 ) printf("%d es multiplo de 3",x[i]);
if (x[i] % 5 == 0 ) printf("%d es multiplo de 5",x[i]);
}
printf ("\n");
system("pause");
return 0;
}
sin embargo cuando ejecuto el programa, por que no me salen los multiplos?
y muchisiisimas graciass por vuestra ayuda.