- #1
- 1
- 0
Hi,
I'm a beginner in C++.
I wan't to write this program:
Write a program that asks the user to enter n numbers –where n entered by the user- and calculates the sum of even numbers only. main function asks the user to enter n and then calls the recursive function Sum to read the values entered by the user. The function Sum returns the summation of even numbers only. At the end, main prints the summation that is returned by the recursive function.
Sample run:
How many numbers do you have:? 6
Enter number:3
Enter number:2
Enter number:9
Enter number:5
Enter number:6
Enter number:8
Sum of odd numbers = 16
I solve this question in that way, and i know it's wrong. can anybody help me please?
I'm a beginner in C++.
I wan't to write this program:
Write a program that asks the user to enter n numbers –where n entered by the user- and calculates the sum of even numbers only. main function asks the user to enter n and then calls the recursive function Sum to read the values entered by the user. The function Sum returns the summation of even numbers only. At the end, main prints the summation that is returned by the recursive function.
Sample run:
How many numbers do you have:? 6
Enter number:3
Enter number:2
Enter number:9
Enter number:5
Enter number:6
Enter number:8
Sum of odd numbers = 16
I solve this question in that way, and i know it's wrong. can anybody help me please?
PHP:
#include<iostream>
using namespace std;
double sum(int);
int main()
{
int n;
cout << "How many numbers do you have? ";
cin >> n;
sum(n);
cout << "Sum of even numbers = " << sumEven << endl;
return 0;
}
double sum(int a)
{
int num;
double sumEven=0;
double sumOdd=0;
cout << "Enter number: ";
cin >> num;
if(num%2==0)
{
sumEven += num;
sum(num);
}
else if(num%2==1)
{
sumOdd += num;
sum(num);
}
return sumEven;
}