-2
int main()
{
int N1, N2, N3;
printf("Digite o primeiro numero: ", N1);
scanf("%d", &N1);
printf("Digite o segundo numero: ", N2);
scanf("%d", &N2);
printf("Digite o terceiro numero: ", N3);
scanf("%d", &N3);
system("PAUSE>>NULL");
return 0;
}
What is your question? Can you only read 3 numbers? Or can you take advantage of this knowledge and read the 6 needed? You have problems with arithmetic operations and putting their result into a variable?
– Jefferson Quesado
Look at this problem you can solve using repeat structures
– rafael marques
I reinforce what @Jeffersonquesado said. What exactly is your doubt ? It was missing to say this, which is the most important.
– Isac