1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#include <iostream>
using namespace std;
const int lucky=6;
void introduction ();
int findouthowmany (int x, int y, int z);
int didtheproducthit (int x, int y);
int main()
{
int x, y, z;
introduction ();
cout<< "the three original integers are "<< endl;
cin>>x;
cin>>y;
cin>>z;
cout<< findouthowmany << " numbers are equal to the lucky number 6" << endl;
didtheproducthit (x,y);
return 0;
}
void introduction() {
cout<< " This program will end when there are at least eight sets of data values."<< endl << endl;
return;
}
//findouthowmany will determine how many of the three integers: int x, y, and z are equal to the lucky number. it will print how many of the three numbers are equal.
int findouthowmany (int x, int y, int z) {
int count=0;
if (lucky==x)
count++;
if (lucky==y)
count++;
if (lucky==z)
count++;
return count;
}
//didtheproducthit will determine whether or not the product of parameter x and y values equal the lucky number and it will print a comment saying whether or not they multiply to 6. this function will repeat three times in the main function.
int didtheproducthit (int x, int y) {
if (lucky==x*y)
cout<< x << " and " << y << " multiply to 6" << endl;
else
cout<< x << " and "<< y << " do not multiply to 6" << endl;
return lucky;
int didtheproducthit (int y, int z) {
if (lucky==y*z)
cout<< y << " and " << z << " multiply to 6" << endl;
else
cout<< y << " and "<< z << " do not multiply to 6" << endl;
return lucky;
int didtheproducthit (int x, int z) {
if (lucky==x*z)
cout<< x << " and " << z << " multiply to 6" << endl;
else
cout<< x << " and "<< z << " do not multiply to 6" << endl;
return lucky;
};};}
|