Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.04 KB | None | 0 0
  1.  
  2. ///////////////////////////////////////
  3. //
  4. // PRACTICO: 4
  5. // APELLIDO: Barbiani
  6. // NOMBRES: Gianfranco
  7. // MATRICULA: 36372639                
  8. // DNI: 36372639
  9. // COMISION: 3.2
  10. //
  11. //////////////////////////////////////////
  12.  
  13.  
  14. #include<iostream>
  15. #include<fstream>
  16. #include<cmath>
  17.  
  18. using namespace std;
  19.  
  20. /*
  21.  
  22.  
  23. void leer_matriz(int& total, int datos[10][10]);
  24. void procesar_matriz(int total, int datos[10][10]);
  25. void guardar_matriz(int total, int datos[10][10]);
  26.  
  27. void espejar_horizontal(int total, int datos[10][10]);
  28. void espejar_vertical(int total, int datos[10][10]);
  29. void rotar_horario(int total, int datos[10][10]);
  30. void rotar_antihorario(int total, int datos[10][10]);
  31. void transponer(int total, int datos[10][10]);
  32.  
  33. */
  34.  
  35. int main()
  36. {
  37.  
  38. /////////////           LECTURA DEL ARCHIVO           /////////////          
  39.  
  40.     int num_ent;
  41.     ifstream  arch_ent;
  42.     arch_ent.open("matriz_de_entrada.txt", ios_base::in);
  43.     arch_ent>>num_ent;
  44.     arch_ent.close();
  45.    
  46.    
  47.     return EXIT_SUCCESS;
  48.    
  49.    
  50.    
  51.  
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement