0
Write a function named "reduce" that takes two positive integer arguments, call them "num" and "denom", treats them
The function should return the value 0 (to indicate failure to reduce) if either of the two arguments is zero or negative, and should return the value 1 otherwise. Thus, for example, if m and n have been declared to be integer variables in a program, then m = 25; n = 15; if (reduce(m,n)) cout << m << '/' << n << endl; else cout << "fraction error" << endl; will produce the following output: 5/3 Note that the values of m and n were modifi
3 Respostas
+ 3
Is this some kind of challange or just your homework?
+ 2
I smell homework. It's not even 0.5 of a challenge.
0
hey
do your own homework >:(