█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 213

Problema 0x78 - Suma de 2 números

  • Autor: davidarias
  • Fecha: 2020-08-30 22:10:15 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
                      main.c:7:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &a);
           ~~   ^~
           %ld
main.c:8:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &b);
           ~~   ^~
           %ld
main.c:10:20: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
    printf("%d\n", res);
            ~~     ^~~
            %ld
3 warnings generated.

                    
0.005 s 1 KBi
#2
Correcto
                      main.c:7:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &a);
           ~~   ^~
           %ld
main.c:8:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &b);
           ~~   ^~
           %ld
main.c:10:20: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
    printf("%d\n", res);
            ~~     ^~~
            %ld
3 warnings generated.

                    
0.006 s 1 KBi
#3
Correcto
                      main.c:7:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &a);
           ~~   ^~
           %ld
main.c:8:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &b);
           ~~   ^~
           %ld
main.c:10:20: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
    printf("%d\n", res);
            ~~     ^~~
            %ld
3 warnings generated.

                    
0.005 s 1 KBi
#4
Correcto
                      main.c:7:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &a);
           ~~   ^~
           %ld
main.c:8:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &b);
           ~~   ^~
           %ld
main.c:10:20: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
    printf("%d\n", res);
            ~~     ^~~
            %ld
3 warnings generated.

                    
0.005 s 1 KBi
#5
Correcto
                      main.c:7:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &a);
           ~~   ^~
           %ld
main.c:8:17: warning: format specifies type 'int *' but the argument has type 'long *' [-Wformat]
    scanf("%d", &b);
           ~~   ^~
           %ld
main.c:10:20: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
    printf("%d\n", res);
            ~~     ^~~
            %ld
3 warnings generated.

                    
0.005 s 1 KBi
Puntos totales: 100 / 100

Código

#include <stdio.h>

int main(void)
{
    long int a = 0, b = 0, res = 0;

    scanf("%d", &a);
    scanf("%d", &b);
    res = a + b;
    printf("%d\n", res);
    return (0);
}