VladimirKostovsky

Лаб. 1. 4(б) Редакция 0.1

Feb 10th, 2022 (edited)
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.85 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <cmath>
  3.  
  4. int main() {
  5.     // Работа с файлами - later
  6.     // ввод массива P
  7.     struct polinomP { char l; polinomP* next; };
  8.     polinomP *head, *p; char ch;
  9.     head = p = new polinomP;
  10.     scanf_s("%c", &(p->l));
  11.     scanf_s("%c", &ch);
  12.     while (ch != '\n') {
  13.         p->next = new polinomP; p = p->next; p->l = ch;
  14.         scanf_s("%c", &ch);
  15.     }
  16.     p->next = NULL; // ура, запустилось
  17. // КАК ВЫВЕСТИ ПОЛИНОМ
  18.     // Пока не конец строки
  19.     // ввод массива Q
  20.     // Пока не конец файла
  21.     // R[i] = P[i] + Q[i]
  22.     //for (int i = 0; i < n; i++) {
  23.         //polinomR[i] = polinomP[i] + polinomQ[i];
  24.     //} все рушится, если полиномы разной размерности
  25.  
  26.     // if R[i] == 0 -> пропустить
  27.     // Вывести R
  28. }
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
Add Comment
Please, Sign In to add comment