Código
#include<stdio.h> #include<conio.h> void leertemp(float temp[]); float promTemp(float temps[]); main( ) { float temps[7]; //float tempro1[7]; float promc=0; leertemp(temps); promc= promTemp(temps); } void leertemp(float temp[]) { int dia; for ( dia = 1; dia <=7; dia++) { printf( " Ingresa la temperatura del dia %d",dia); scanf("%d",&temp[dia-1]); } }//fin leyendo temperaturas float promTemps(float temps[]) { int dia; float prom=0; for(dia=1; dia<=7; dia++) { prom= prom+temps[dia]; } return(prom/7); printf(" la suma es %.2f",prom); }
· Los códigos deben ir en etiquetas GeSHi
>aquí las reglas del foro
-Engel Lex