вычислить их сумму A+B. В этой задаче вам нужно читать из файла и выводить ответ в файл
#include <fstream>
#include <ostream>
#include <string>
using namespace std;
int main() {
long int a, b;
ifstream input("input.txt");
if (input) {
input >> a;
input.ignore(1);
input >> b;
}
const string path = "output.txt";
ofstream output(path);
output << a + b << endl;
}
Что не работает?
Вот так надо #include <fstream> using namespace std; int main() { ifstream in("input.txt"); ofstream out("output.txt"); int a, b; in >> a >> b; out << a + b << endl; return 0; }
Предыдущий код тоже работал, если убрать ignore и ub в случае отсутствия файла input.txt
Обсуждают сегодня