#include <stdio.h>
#include <conio.h>
void main(void)
{
struct temperaturas
{
char nom_pais[20];
int temp_max;
int temp_min;
}paises[25];
int c;
for (c=0;c<=24;c++)
{
printf("introduzca pais: n");
gets (paises[c].nom_pais);
printf("introduzca temp max: n");
scanf("%d",paises[c].temp_max);
printf("introduzca temp min: n");
scanf("%d",paises[c].temp_min);
getc(stdin);
}
while(getch()=='n');
}