Elaborate a program in C that receives 6 integers and then the program must present the sum of these numbers in the screen, only here

-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;
}
    
asked by anonymous 10.06.2018 / 15:35

1 answer

-2

Here is the corrected code, any questions I am here

 #include <stdio.h>

int main(int argc, char** argv)
{
  int numero, somatorio = 0; //iniciar com zero para não ter lixo de memória
  for(int i = 0; i < 6; i++)
  {
    scanf("%d",&numero);
    somatorio+=numero;  // vai somar todos os numeros que o usuario digitar
  }
   printf("%d\n",somatorio);  // mostra o resultado
   return 0;
}
    
10.06.2018 / 16:23