bosnia Posted December 4, 2009 at 10:19 PM Report Share #298741 Posted December 4, 2009 at 10:19 PM como é que faço agora para gerar as palavras na matriz #include <stdio.h> #include <stdlib.h> int main() { //lista das palavras na matriz char palavras [7][7]{ {"maça+++++"} {"pera+++++"} {"banana+++"} {"pessego+++"} } //random das palavras for(i=0;i<7;i++){ for(j=0;j<7;j++){ } } } Link to comment Share on other sites More sharing options...
Baderous Posted December 4, 2009 at 10:45 PM Report Share #298744 Posted December 4, 2009 at 10:45 PM Não percebi o que queres, acho que é melhor escreveres em Português um textinho a explicar a tua dúvida. Link to comment Share on other sites More sharing options...
bosnia Posted December 4, 2009 at 11:06 PM Author Report Share #298747 Posted December 4, 2009 at 11:06 PM então é o seguinte , tenho uma matriz 7 por 7, e queria que as palavras que tenho na lista ,fosse feito um random as palavras tipo jogo caça palavras Link to comment Share on other sites More sharing options...
Baderous Posted December 4, 2009 at 11:20 PM Report Share #298750 Posted December 4, 2009 at 11:20 PM Hmm...acho que da forma que estás a fazer com 2 ciclos vais acabar por baralhar as letras das palavras e não as próprias palavras. Basta-te fazer um random sobre os índices das strings. Repara que essa matriz pode ser vista como um array de strings, daí que fazendo um random de um inteiro referente ao índice das strings desse array já chega. Link to comment Share on other sites More sharing options...
bosnia Posted December 5, 2009 at 11:57 AM Author Report Share #298770 Posted December 5, 2009 at 11:57 AM e como é que faço isso Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now