#include "stdafx.h"
#include "stdio.h"
#include "conio.h"
#define MAX 40
using namespace System;
int main(array<System::String ^> ^args)
{
int VNotas[MAX];
int N;
int suma;
int menor;
do{
printf("Ingrese cuantas notas hay : ");
scanf("%d",&N);
}while(N<0||N>MAX);
//mostrar las notas
for(int i=0;i<N;i++)
do{
printf("Ingrese nota");
scanf("%d",&VNotas);
}while(VNotas<0||VNotas>20);
suma=0
for(int i=0;i<N;i++)
suma+=VNotas;
menor=VNotas[0];
for(int i=1;i<N;i++)
if(VNotas<menor)
menor=VNotas;
printf("El promedio es : %d",(suma-menor)/(N-1));
_getch();
return 0;
}
#include "stdio.h"
#include "conio.h"
#define MAX 40
using namespace System;
int main(array<System::String ^> ^args)
{
int VNotas[MAX];
int N;
int suma;
int menor;
do{
printf("Ingrese cuantas notas hay : ");
scanf("%d",&N);
}while(N<0||N>MAX);
//mostrar las notas
for(int i=0;i<N;i++)
do{
printf("Ingrese nota");
scanf("%d",&VNotas);
}while(VNotas<0||VNotas>20);
suma=0
for(int i=0;i<N;i++)
suma+=VNotas;
menor=VNotas[0];
for(int i=1;i<N;i++)
if(VNotas<menor)
menor=VNotas;
printf("El promedio es : %d",(suma-menor)/(N-1));
_getch();
return 0;
}