📜  C程序添加两个整数

📅  最后修改于: 2021-05-28 03:09:08             🧑  作者: Mango

给定两个数字A和B。任务是编写一个程序来查找这两个数字的加法。

例子

Input: A = 2, B = 3
Output: 5

Input: A = 3, B = 6
Output: 9

在下面的程序中,将两个数字相加,首先要求用户输入两个数字,然后使用scanf()函数对输入进行扫描并将其存储在变量中AB 。然后,变量AB使用算术运算运算符添加+结果存储在变量sum中

下面是在C程序中添加两个数字的方法:

// C program to add two numbers
#include
  
int main()
{
    int A, B, sum = 0;
      
    // Ask user to enter the two numbers
    printf("Enter two numbers A and B : \n");
      
    // Read two numbers from the user || A = 2, B = 3
    scanf("%d%d", &A, &B);
      
    // Calclulate the addition of A and B
    // using '+' operator
    sum = A + B;
      
    // Print the sum
    printf("Sum of A and B is: %d", sum);
      
    return 0;
}

输出

Enter two numbers A and B : 2 3
Sum of A and B is: 5

想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。