Tema: arrays y for
Ver Mensaje Individual
  #16 (permalink)  
Antiguo 05/04/2012, 12:02
alejandromi
 
Fecha de Ingreso: marzo-2012
Mensajes: 33
Antigüedad: 12 años, 9 meses
Puntos: 0
Respuesta: arrays y for

si al multiplicar le pongo =0 como me dices, no me da resultado, osea el resultado da 0

saque lo del multiplo que me dices y perfecto.

ahora vamos a por la ecuacion, osea hacer la ecuacion de la suma, y sii que ahi necesito mucha ayuda, ya q es lo que peor llebo lo de las ecuaciones,

muchisimasss graciass por vuestra ayuda, dejo el codigo con los arreglos q me habeis dicho :

Código:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
 
 
int main()
{
int x[6];
int suma=0;
int mayor,i;

int multiplicar=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];
        multiplicar*=x[i];
}
printf ("\n 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("\n 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\n",x[i]);
    if (x[i] % 3 == 0 ) printf("%d es multiplo de 3\n",x[i]);
    if (x[i] % 5 == 0 ) printf("%d es multiplo de 5\n",x[i]);
    } 


printf("\n\t\t*** PROGRAMITA MULTIPLICA LOS NUMEROS ***\n");
 
for(i=0; i<6; i++)
{
        printf("\nIntroduzca el numero %i y luego pulse intro:\t",i*1);
        scanf("%i",&x[i]);
        multiplicar*=x[i];
}
printf ("\n Multiplicar= %i",multiplicar);




printf ("\n");
system("pause");
return 0;
}