• Lenguaje

    C

  • Descripción

    Dado dos números enteros, hallar la suma: S = n1 + n2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    float S, n1, n2;
    printf ("Ingresa el valor de n1: ");
    scanf ("%f", &n1);
    (void) getchar ();
    printf ("Ingresa el valor de n2: ");
    scanf ("%f", &n2);
    (void) getchar ();
    S=n1+n2;
    printf ("Valor de S: %g\n", S);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}