Advertisement
VladimirKostovsky

Лаба 1. Черновик на защиту

Mar 14th, 2022
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.25 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. using namespace std;
  5.  
  6. int number;
  7. struct subsequence { float data; float power; subsequence* next; subsequence* pred; } *S;
  8. void Read_subsequence(subsequence* S) // функция формирования списка
  9. {
  10.     subsequence* t;
  11.     t = S;
  12.  
  13.     ifstream F;
  14.     F.open("file1.txt");
  15.  
  16.     if (!F.is_open())
  17.     {
  18.         cout << "Ошибка откытия файла" << endl;
  19.     }
  20.     else {
  21.         cout << "Файл открыт" << endl;
  22.  
  23.         while (!F.eof())
  24.         {
  25.             F >> number; // заглавное звено
  26.             t->next = new subsequence;
  27.             t = t->next;
  28.  
  29.             t->data = number;
  30.         }
  31.  
  32.         t->next = new subsequence;
  33.         t = t->next;
  34.  
  35.         t->data = number;
  36.         t->next = NULL;
  37.     }
  38.     F.close();
  39. }
  40. void Print(subsequence* S)
  41. {
  42.     ofstream fout("file3.txt", ios_base::app);
  43.     subsequence* t;
  44.     fout << "Да это же полином!" << endl;
  45.     for (t = S->next; t->next != NULL; t = t->next)
  46.     {
  47.         fout << "| " << t->data << endl;
  48.  
  49.     }
  50.     fout << endl;
  51. }
  52. int main()
  53. {
  54.     setlocale(LC_ALL, "RUS");
  55.     S = new subsequence;
  56.     Read_subsequence(S);
  57.     Print(S);
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement