. Declarar uma matriz para 10 elementos, usar um laço for para inicializar os elementos e exibí-los na vertical.
Soluções para a tarefa
Respondido por
0
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <math.h>
#include <string.h>
main()
{
int x;
float vet[10];
for (x=0; x<=9; x++)
{ printf("Digite o numero %d: ",x+1);
scanf("%f", &vet[x]); }
printf("\n\nNUMEROS: ");
for (x=0; x<=9;x++)
printf("\n%4.0f",vet[x]);
printf("\n\n");
system("pause");
return 0;
}
#include <stdlib.h>
#include <conio.h>
#include <math.h>
#include <string.h>
main()
{
int x;
float vet[10];
for (x=0; x<=9; x++)
{ printf("Digite o numero %d: ",x+1);
scanf("%f", &vet[x]); }
printf("\n\nNUMEROS: ");
for (x=0; x<=9;x++)
printf("\n%4.0f",vet[x]);
printf("\n\n");
system("pause");
return 0;
}
Perguntas interessantes