Want to save and run this spell?

Sign in to favorite, fork, and execute code

Sign In

Soma

Faz soma

c
in Teste
3 views
1 month ago
c
#include <stdio.h>
#include <math.h>

int main(){

    int num1, num2,variavel; //Declarando as variaveis
    
    printf("Primeiro numero?"); 
    scanf("%d",&num1);//Tipo int  se puxa o valor %d
    
    printf("Segundo numero?");
    scanf("%d",&num2);//Tipo int  se puxa o valor %d
    
    
    variavel = num1+num2; //atribui o valor para variavel da soma dos valores
    
    printf("Resultado é: %d\n",variavel); //imprime o valor
    
    };