Поделитесь своими знаниями, ответьте на вопрос:
Составить схему алгоритма и программу для вычисления определения суммы всех нечетных чисел массива t={t j }, j=1, s, s - число элементов в массиве T(s<=40Вывести на экран найденное значение суммы, а также все нечетные числа и их адреса(Pascal)
using namespace std;
int gcd(int a, int b);
int main()
{
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
int n;
cin >> n;
for (int i = 0; i < n; ++i)
{
int a, b, c, d;
scanf("%d/%d+%d/%d=", &a, &b, &c, &d);
int num = a * d + b * c;
int den = b * d;
int cur_gcd = gcd(num, den);
num /= cur_gcd;
den /= cur_gcd;
cout << num;
if(den != 1)
cout << '/' << den;
cout << endl;
}
fclose(stdin);
fclose(stdout);
return 0;
}
int gcd(int a, int b)
{
if(a == 0)
return b;
return gcd(b % a, a);
}