Здравствуйте, программисты. Я написал "Калькулятор дробный", и у меня не работает, если я хочу сложить дроби с разными знаменателями Если что, язык C++.
#include
#include
using namespace std;
struct fraction {
int ch, zn;
char dir;
};
int Add_n(int n1, int n2, int m1, int m2);
int Add_m(int n1, int n2, int m1, int m2);
int main()
{
fraction f1, f2;
string str1;
int m, n;
cout << "Введите числитель 1 дроби ";
cin >> f1.ch;
cout << "Введите знаменатель 1 дроби ";
cin >> f1.zn;
cout << "Введите знак: (Addition, Subtraction, Multiplication, Division) ";
cin >> f1.dir;
cout << "Введите числитель 2 дроби ";
cin >> f2.ch;
cout << "Введите знаменатель 2 дроби ";
cin >> f2.zn;
// switch(f1.dir)
//{
//case '+':
m = Add_m(f1.zn, f2.zn, f1.ch, f2.ch);
n = Add_n(f1.zn, f2.zn, f1.ch, f2.ch);
str1 = "Выражение равно: ";
//break;
//}
cout << str1; '\n';
cout << "Числитель " << m << '\n';
cout << "Знаменатель " << n;
}
int Add_n(int n1, int n2, int m1, int m2) {
int ret;
if (n1 = n2) {
ret = n1;
}
else {
ret = n1 * n2;
}
return ret;
}
int Add_m(int n1, int n2, int m1, int m2) {
int ret;
if (n1 = n2)
ret = m1 + m2;
else if (n1 != n2)
ret = m1 * n2 + m2 * n1;
return ret;
}