Need help!!!

closed account (3pf2y60M)
I am new to programming in C++, and have got a project on this. Could someone guide me the correct way to solve this...


Write a C++ program that accepts three numbers from the user (All are integers):
Such as:
Enter the first mark: 3
Enter the second mark: 25
Enter the third mark: 23
The program should find and print the average of the odd numbers greater than 5 and less than 100.
First you ask the user for 3 integer values. Next, calculate the answer.

Assume you were given a piece of paper with 3 random integers on it. How would you solve the problem manually?

When you figure that out, then you can begin to write the program to do it.
closed account (3pf2y60M)
Thanks for your cooperation....

I have got this much so far but cant recognize how to do ahead???


#include <iostream>
#include<conio.h>


using namespace std;

int main()
{
int a,b,c,
cout << "Enter first number";
cin >> a;
cout << "Enter second number";
cin >> b;
cout << "Enter third number";
cin >> c;
You need some of these: if += % / < &&

If you have been given a project, then those tools have already been explained or you have been given means to find out what they do.
closed account (3pf2y60M)
Yeah it has been....
Topic archived. No new replies allowed.