1
This is a memory game and while the numbers are playing I want the user not to be able to type.
**for (i=0;i<2;i++) //Exibe os números que estão no vetor numeros[]
{
printf ("%d\t", numeros[i]); //Mostra no ecrã
}
Sleep (1000); //Aguarda 1 segundo
}
while (j>0); //Esta sequência acontece até que o j seja maior do que 0
system ("cls"); // Limpa o ecrã
printf ("Que números foram exibidos? \n\n"); //Mostra no ecrã
for (i=0;i<2;i++)
{
printf ("\t%d° número: ", i+1); //Pede todos os números para o utilizador
scanf ("%d", &respostas[i]); //Recebe os números do utilizadorfor (i=0;i<2;i++) //Exibe os números que estão no vetor numeros[]
{
printf ("%d\t", numeros[i]); //Mostra no ecrã
}
Sleep (1000); //Aguarda 1 segundo
}
while (j>0); //Esta sequência acontece até que o j seja maior do que 0
system ("cls"); // Limpa o ecrã
printf ("Que números foram exibidos? \n\n"); //Mostra no ecrã
for (i=0;i<2;i++)
{
printf ("\t%d° número: ", i+1); //Pede todos os números para o utilizador
scanf ("%d", &respostas[i]); //Recebe os números do utilizador**
To be honest, your question is very confusing. Don’t you have a console print to illustrate what you want? Anyway, I think maybe I can solve it by using a boolean type variable to determine whether or not you can ask the user for numbers.. is a way.
– M. Bertolazo
My program generates numbers and these numbers will appear for x time for the user to memorize. Next the user needs to say which numbers have been shown. Now the problem is that the user can type the answers while the numbers are being shown.
– Miguel