Page 1 of 1

ASAP PLEASE C++ PROGRAM Complete the following program that contain three classes A, B and C. Class A contains a functio

Posted: Mon May 02, 2022 12:16 pm
by answerhappygod
ASAP PLEASE C++ PROGRAM
Complete the following program that contain three classes A, B
and C.
Class A contains a function called a that prints the numbers
from 1-10 using a for loop
Class B contains a function called b that receive three numbers
and return their average
Class C contains a function called c that print a welcome
message
#include <iostream>
using namespace std;
class A {
public:
};
class B {
public:
};
class C {
public:
};
int main()
{
}