Advertisement
Ejejejejejjr

Запись в файл

Dec 29th, 2020
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.56 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <fstream>
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7.     setlocale(LC_ALL, "Rus");
  8.     srand(time(NULL));
  9.    
  10.     //для записи в файл используется класс ofstream
  11.     std::ofstream fs;
  12.     std::string path = "file.txt";
  13.     fs.open(path, std::ofstream::app);
  14.    
  15.     if (fs.is_open())
  16.     {
  17.         for (int i = 0; i < 5; i++)
  18.         {
  19.             std::cout << "Скажите что-нибудь: ";
  20.             std::string inputFile;
  21.             std::cin >> inputFile;
  22.             fs << "\n";
  23.             fs << inputFile;
  24.         }
  25.         std::cout << "Готово!";
  26.     }
  27.  
  28.     fs.close();
  29.  
  30.     return 0;
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement