0
Write a program by c++ language to find summation of five intger numbers ,note use for looping statment .
4 Answers
+ 16
int sum = 0;
int value;
for(int x = 0; x < 5; ++x)
{
cin >> value;
sum += value;
}
cout << sum;
+ 1
https://youtu.be/cNze5ZAlp2w SEE C PROGRAM SUMMATION
+ 1
thanks jamiul
0
thanks for you answering