The program in C++ to Compute Sum of Three given integers is given below:
#include <iostream>
using namespace std;
int main() {
int num1, num2, num3;
cout<<"Hello Codeauri Family, Enter the three numbers here:\n";
cin>>num1>>num2>>num3;
int sum = num1 + num2 + num3;
cout << "The sum of the three integers is: " << sum << endl;
return 0;
}
Output:
Hello Codeauri Family, Enter the three numbers here:
789
178
908
The sum of the three integers is: 1875
Pro-Tips💡
This program prompts the user to enter three integers, then it adds them together and stores the sum in the variable ‘sum’.
Finally, it prints out the sum
Learn C-Sharp ↗
C-sharp covers every topic to learn about C-Sharp thoroughly.
Learn C Programming ↗
C-Programming covers every topic to learn about C-Sharp thoroughly.
Learn C++ Programming↗
C++ covers every topic to learn about C-Sharp thoroughly.