Nesse pequeno problema tenho que inserir os valores aleatoriamente nas 2 matrizes, e dar a média das 2 no final, só que ao compilar ele esta dando erro no primeiro for. Mais abaixo vou colar os erros informados.
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int i [14];
int j [23];
int media;
for (i = 0; i < 14; i++){
for (j = 0; j < 23; j++);
srand ([i],[j]);
media = ([i] + [j]) / 2;
printf(" A m%cedia dos valores %ce: ", [i], [j]);
system("PAUSE");
return 0;
}
}
Segue abaixo os erros informados no DEV-C++
M14_x_23.c: In function `main':
M14_x_23.c:9: warning: comparison between pointer and integer
M14_x_23.c:9: error: wrong type argument to increment
M14_x_23.c:10: error: incompatible types in assignment
M14_x_23.c:10: warning: comparison between pointer and integer
M14_x_23.c:10: error: wrong type argument to increment
M14_x_23.c:11: error: syntax error before '[' token
M14_x_23.c:12: error: syntax error before '[' token
M14_x_23.c:13: error: syntax error before '[' token
Pergunta
Chirrimbr
Nesse pequeno problema tenho que inserir os valores aleatoriamente nas 2 matrizes, e dar a média das 2 no final, só que ao compilar ele esta dando erro no primeiro for. Mais abaixo vou colar os erros informados.
Segue abaixo os erros informados no DEV-C++
M14_x_23.c: In function `main':
M14_x_23.c:9: warning: comparison between pointer and integer
M14_x_23.c:9: error: wrong type argument to increment
M14_x_23.c:10: error: incompatible types in assignment
M14_x_23.c:10: warning: comparison between pointer and integer
M14_x_23.c:10: error: wrong type argument to increment
M14_x_23.c:11: error: syntax error before '[' token
M14_x_23.c:12: error: syntax error before '[' token
M14_x_23.c:13: error: syntax error before '[' token
make.exe: *** [M14_x_23.o] Error 1
Link para o comentário
Compartilhar em outros sites
6 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.