Saltar al contenido

cómo almacenar datos en un archivo txt ejemplo de código c ++

Te sugerimos que pruebes esta resolución en un ambiente controlado antes de enviarlo a producción, un saludo.

Ejemplo 1: archivos c++

// basic file operations
#include <iostream>
#include <fstream>
using namespace std;

int main()
  ofstream myfile;
  myfile.open("example.txt");
  myfile <<"Writing this to a file.n";
  myfile.close();return0;

Ejemplo 2: cómo abrir un archivo de entrada en C++

#include <fstream>

ifstream file_variable;//ifstream is for input from plain text files
file_variable.open("input.txt");//open input.txt

file_variable.close();//close the file stream/*
Manually closing a stream is only necessary
if you want to re-use the same stream variable for a different
file, or want to switch from input to output on the same file.
*/
_____________________________________________________
//You can also use cin if you have tables like so:while(cin >> name >> value)// you can also use the file stream instead of this
 cout << name << value << endl;
_____________________________________________________
//ifstream file_variable; //ifstream is for input from plain text files
ofstream out_file;
out_file.open("output.txt");

out_file <<"Write this scentence in the file"<< endl;

Reseñas y puntuaciones del tutorial

Si haces scroll puedes encontrar las anotaciones de otros sys admins, tú de igual forma puedes insertar el tuyo si lo deseas.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *