помогите дописать код с++
В файле text.txt дана одна строка - текст сообщения. Автор забыл поставить в конце точку. Запишите в файл res.txt сообщение с точкой на конце.



#include
#include
#include
using namespace std;
int main()
{
char str [100];
ifstream fi ("text.txt ");
ofstream fo ("res.txt");
fi >> str;
fo << str << ".";
}
выдаёт рандомные символы
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2025 SCHOLAR.TIPS - All rights reserved.