Home
О нас
Products
Services
Регистрация
Войти
Поиск
asdasedqwdwqd
@asdasedqwdwqd
August 2021
1
18
Report
Задача на с++
Дан файл. Удалить из него третью строку.
Результат записать в другой файл.
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
clinteastwood2
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <iterator>
using namespace std;
int main()
{
vector<string> str;
string text;
ifstream fin("a.txt");
while (getline(fin, text)) {
str.push_back(text);
}
fin.close();
str.erase(str.begin() + 2);
ofstream fout("b.txt");
copy(str.begin(), str.end(), ostream_iterator<string>(fout,
"\n"
));
fout.close();
system("pause");
return 0;
}
2 votes
Thanks 0
More Questions From This User
See All
asdasedqwdwqd
August 2022 | 0 Ответы
zadacha na c dany dva chisla d i l trebuetsya najti pervye 15 naturalnyh chisel
Answer
asdasedqwdwqd
August 2022 | 0 Ответы
zadacha na c dany dva massiva a i b odinakovoj dliny n sozdat novyj massiv dl
Answer
asdasedqwdwqd
August 2022 | 0 Ответы
na shahmatnoj doske v kletke x1y1x1y1 nahoditsya shahmatnyj kon opredelite
Answer
asdasedqwdwqd
August 2022 | 0 Ответы
zadacha na cna shahmatnoj doske v kletke x1y1 nahoditsya shahmatnyj korol o
Answer
asdasedqwdwqd
July 2022 | 0 Ответы
zadacha na c dana posledovatelnost celyh chisel a1 a2 a3 an zakanchiva
Answer
asdasedqwdwqd
July 2022 | 0 Ответы
zadacha na c napishite programmu kotoraya nahodit vse razlichnye cifry v simvoln
Answer
asdasedqwdwqd
July 2022 | 0 Ответы
zadacha na c v etoj zadache dolzhna prisutstvovat funkciya nahozhdeniya perimetra
Answer
asdasedqwdwqd
July 2022 | 0 Ответы
reshite zadachu na c dano chislo x neobhodimo najti vse ego naturalnye deliteli
Answer
asdasedqwdwqd
July 2022 | 0 Ответы
zadacha na c dano trehznachnoe chislo napishite programmu opredeleniya yavlyaetsya l
Answer
asdasedqwdwqd
July 2022 | 0 Ответы
5n1n format vhodnyh dannyh vvoditsya naturalnoe chislo n 3n105 format
Answer
рекомендуемые вопросы
rarrrrrrrr
August 2022 | 0 Ответы
o chem dolzhny pozabotitsya v pervuyu ochered vzroslye pri organizacionnom vyvoze n
danilarsentev
August 2022 | 0 Ответы
est dva stanka na kotoryh vypuskayut odinakovye zapchasti odin proizvodit a zapcha
myachina8
August 2022 | 0 Ответы
najti po grafiku otnoshenie v3v1 v otvetah napisano 9 no nuzhno reshenie
ydpmn7cn6w
August 2022 | 0 Ответы
Choose the correct preposition: 1.I am fond (out,of,from) literature. 2.where ar...
millermilena658
August 2022 | 0 Ответы
opredelite kak sozdavalas i kto sozdaval arabskoe gosudarstvo v kracii
MrZooM222
August 2022 | 0 Ответы
ch ajtmanov v rasskaze krasnoe yabloko ispolzuet metod rasskaz v rasskaze opi
timobila47
August 2022 | 0 Ответы
kakovo bylo naznachenie kazhdoj iz chastej vizantijskogo hrama pomogite pozhalujsta
ivanyyaremkiv
August 2022 | 0 Ответы
moment. 6....
pozhalujsta8b98a56c0152a07b8f4cbcd89aa2f01e 97513
sarvinozwakirjanova
August 2022 | 0 Ответы
pomogite pozhalusto pzha519d7eb8246a08ab0df06cc59e9dedb 6631
×
Report "Задача на с++ Дан файл. Удалить из него третью строку. Результат записать в друг..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <fstream>
#include <string>
#include <vector>
#include <iterator>
using namespace std;
int main()
{
vector<string> str;
string text;
ifstream fin("a.txt");
while (getline(fin, text)) {
str.push_back(text);
}
fin.close();
str.erase(str.begin() + 2);
ofstream fout("b.txt");
copy(str.begin(), str.end(), ostream_iterator<string>(fout, "\n"));
fout.close();
system("pause");
return 0;
}