Advertisement
xlujiax

Lectura_Archivo_Secuencial

Oct 25th, 2016
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using std::cerr;
  4. using std::cout;
  5. using std::endl;
  6. using std::fixed;
  7. using std::ios;
  8. using std::left;
  9. using std::right;
  10. using std::showpoint;
  11.  
  12. #include <fstream> //flujo de archivo
  13. using std:: ifstream; //flujo de archivo de entrada
  14.  
  15. #include <iomanip>
  16. using std::setw;
  17. using std::setprecision;
  18.  
  19. #include <string>
  20. using std::string;
  21.  
  22. #include <cstdlib>
  23. using std::exit;
  24.  
  25. void imprimirLinea(int, const string, double); //Prototipo
  26.  
  27. int main(int argc, char** argv) {
  28.     ifstream archivoClientesEntrada("clientes.dat", ios::in);
  29.    
  30.     return 0;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement