“Program C, aby dodać dwie liczby” Kod odpowiedzi

Dodaj 2 liczby w C

#include<stdio.h>
int main() {
int a, b, sum;
printf("\nEnter two no: ");
scanf("%d %d", &a, &b);
sum = a + b;
printf("Sum : %d", sum);
return(0);
Innocent Impala

Program C, aby dodać dwie liczby

Enter two integers: 12
11
12 + 11 = 23
Fair Fly

Napisz program C, aby dodać dwa liczby bez użycia operatora dodatku.

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int num1,num2,i;  //Variable declaration
    printf("Enter the first number: ");
    scanf("%d",&num1); 
    printf("Enter the second number: ");
    scanf("%d",&num2);
    for(i=0; i<num2; i++){
   num1++;
    }
printf("Sum of two numbers : %d ",num1);
    return 0;
}
Weary Wolf

Odpowiedzi podobne do “Program C, aby dodać dwie liczby”

Pytania podobne do “Program C, aby dodać dwie liczby”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu