Reducing Fractions in C++

Hello I need to create a program that reduces fractions to lowest terms like 875/1000 = 7/8 I have a function that kind of works and I was wondering if someone couldn't help me fix it. I will include my whole (unfinished program) as I'm never really sure whats relevant and what not to the problem.
here it is:
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
class CFraction
{
    private:
    int numerator;
    int denominator;
    static int count;
    //void simplify();
    
    public:
    CFraction (int numer = 0, int denom = 1)
    {
        numerator = numer;
        denominator = denom;
    }
    CFraction operator+ (const CFraction&) const;
    CFraction operator- (const CFraction&) const;
    CFraction operator* (const CFraction&) const;
    CFraction operator/ (const CFraction&) const;
    CFraction operator+ (double) const;
    CFraction operator- (double) const;
    CFraction operator* (double) const;
    CFraction operator/ (double) const;
    bool operator== (const CFraction&) const;
    bool operator> (const CFraction&) const;
    bool operator< (const CFraction&) const;
    friend istream& operator>> (istream&, CFraction&);
    friend ostream& operator<< (ostream&, const CFraction&);
    void simplify();
    int getCount();
};

void OpenInputFile(ifstream&);
void OpenOutputFile(ofstream&);
char getYesNo(string);
int showMenu();

int main()
{
    char i;
    int optionanswer;
    int counter = 2;
    bool reduced = true;
    string infileName = "";
    string outfileName = "";
    string str;
    ifstream infile;
    ofstream outfile;
    CFraction f1, f2, f3, f4;

    do
    {
        optionanswer = showMenu();
        switch(optionanswer)
        {
            case 1:
                cin >> f1 >> f2;
                f3 = f1 + f2;
                f3.simplify();
                cout << f3;
                system("Pause");
                break;
            case 2:
            case 3:
            case 4:
            case 5:
            case 6:
            case 7:
            case 8:
            case 9:
            case 10:
            {
                OpenInputFile(infile);
                OpenOutputFile(outfile);
                do
                {
                    i = infile.peek();
                    getline(infile, str);
                    cout << str << endl;
                    switch(i)
                    {
                    }
                }
                while(!infile.eof());
            }
            system("Pause");
            break;
        case 11:
            cin >> f1;
            f1.simplify();
            cout << f1;
            system("Pause");
            break;
        }
    }
    while (optionanswer != 12);
    cout << "Thank You! Godd Bye!" << endl;
    system("Pause");
    infile.close();
    outfile.close();
    return(0);
}
void OpenInputFile(ifstream& infile)
{
    string fileName = "";
    char response = 'z';

    cout << "Please enter the file name for input: ";
    cin >> fileName;
    infile.open(fileName.c_str());
    if(!infile.is_open())
    {
        do
        {
            cout << "Could not open file! " << endl;
            response = getYesNo("Do you want to try to open another?"); 
            cout << endl;
            if (response == 'Y')
            {
                cout << "Please enter the file name for input: ";
                cin >> fileName;
                infile.clear();
                infile.open(fileName.c_str());
            }
            else
            {
                cout << "Thank you and good bye!" << endl;
                system("Pause");
                exit(1);
            }
        }
        while(!infile.is_open());
    }
}
void OpenOutputFile(ofstream& outfile)
{
    string fileName = "";
    char response = 'z';

    cout << "Please enter the file name for output: ";
    cin >> fileName;
    outfile.open(fileName.c_str());
    if(!outfile.is_open())
    {
        do
        {
            cout << "Could not open file! " << endl;
            response = getYesNo("Do you want to try to open another?"); 
            cout << endl;
            if (response == 'Y')
            {
                cout << "Please enter the file name for output: ";
                cin >> fileName;
                outfile.clear();
                outfile.open(fileName.c_str());
            }
            else
            {
                cout << "Thank you and good bye!" << endl;
                system("Pause");
                exit(1);
            }
        }
        while(!outfile.is_open());
    }
}
char getYesNo(string prompt)
{
    char answer;
    do
        {
            cout << prompt << endl;
            cout << "Please enter (Y)es or (N)o: ";
            cin >> answer;
            answer = toupper(answer);
            if ((answer == 'Y') || (answer == 'N'))
            {
                cin.ignore(1, '\n');
                break;
            }
            cin.clear();
            cout << "Incorrect input. ";
            cin.ignore(1, '\n');
        }
        while(true);
    cout << "You entered: " << answer << endl;
    return answer;
}
int showMenu()
{
    int option;
    system("cls");
    cout << "Project3 Test Coding" << endl;
    cout << "                 File Option Menu" << endl;
    cout << "****************************************************" << endl;
    cout << "  1)  Add Fractions" << endl;
    cout << "  2)  Subtract Fractions" << endl;
    cout << "  3)  Multiply Fractions" << endl;
    cout << "  4)  Divide Fractions" << endl;
    cout << "  5)  Add Decimal Value To Fraction" << endl;
    cout << "  6)  Subtract Decimal From Fraction" << endl;
    cout << "  7)  Multiply A Fraction By A Decimal" << endl;
    cout << "  8)  Divid A Fraction By A Decimal" << endl;
    cout << "  9)  Compare Two Fractions" << endl;
    cout << "  10) Read From An Input File and Output To A File" << endl;
    cout << "  11) Simplify A Fraction" << endl; //Testing
    cout << "  12) Exit program" << endl;
    cout << "****************************************************" << endl;
    cout << endl;
    while (true)
        {
            cout << "Please choose an option: ";
            cin >> option;
            if (cin.good() && (option > 0) && (option < 13))
            {
                cin.ignore(1, '\n');
                break;
            }
            cin.clear();
            cout << "Incorrect input. ";
            cin.ignore(1, '\n');
        }
    cout << "You entered: " << option << endl;

    return (option);
}
istream& operator >> (istream& in, CFraction& fract)
{
    cout << "\n  Enter the numerator:  "; in >> fract.numerator;
    cout <<   "  Enter the denominator: "; in >> fract.denominator; 
    return (in);
}
ostream& operator << (ostream& out, const CFraction& fract)
{
    out << "Total:" << endl;
    out << fract.numerator << "/" << fract.denominator << endl;
    return (out);
}
CFraction CFraction::operator + (const CFraction& fract) const
{
    CFraction temp;
    temp.numerator = numerator + fract.numerator;
    temp.denominator = denominator + fract.denominator;
    return (temp);
}
void CFraction::simplify()
{
    int counter = 2;
    bool reduced = true;

    do
    {
        if((numerator >= 2) && (denominator >= 2))
        {
            for(counter;counter<=numerator;counter++)
            {
                if((numerator%counter==0) && (denominator%counter==0))
                {
                    numerator = (numerator/counter);
                    denominator = (denominator/counter);
                    bool reduced = false;
                }
            }
        }
    }
    while(!reduced);
}
so.... What is the problem exactly?
Look up gcd (greatest common divisor).

 n    (n/gcd(n,m))
--- = ------------ 
 m    (m/gcd(n,m))
You could use a recursive function such as:
1
2
3
4
5
6
7
8
9
int gcd(int x,int y)
{

  if(y!=0)
    gcd(y,x%y); //recursive call by using arithmetic rules

  return x; //base case,return x when y equals 0

}

Brute force functions such as the one you are trying to do are harder to read,modify and debug than more efficient,reliable and elegant generic solutions that have already been written.In a professional environment,people wouldn't appreciate those 30 minutes lost
trying to reinvent the wheel,as smart as your code may look.Cheers.
Last edited on
Topic archived. No new replies allowed.