Jump to content
Fórum Script Brasil
  • 0

problema com IF dentro do FOR


Ramon de Melo

Question

Quero por um limitador na quantidade de vezes que cada número aparece numa matriz. mas quando ponho um if dentro da estrutura da criação da matriz, ela fica com todos valores iguais a da condição

o código:

int main() {

int i,j;
int tabuleiro5x5[5][5];
int pontuacao[5]={-1,0,1,3,5};
int cont1=0,cont2=0,cont3=0,cont4=0,cont5=0;

srand(time(NULL));

for (i=0;i<5;i++) {

for (j=0;j<5;j++) {
tabuleiro5x5[i][j]= pontuacao[rand()%5];
if (tabuleiro5x5[i][j]=1)
cont3++;
}


}

Quando dou printf nos elementos todos são iguais a 1...

Alguém, por favor, da uma luz aí onde estou errando...

Edited by kuroi
Adicionar tag CODE
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...