From d24a4359bad0c915c39c96b977e1748386c81fc8 Mon Sep 17 00:00:00 2001 From: Manuel Vergara Date: Sun, 23 Jun 2024 20:26:43 +0200 Subject: [PATCH] Add nav --- fundamentos-programacion/PEC1/README.md | 4 +++- fundamentos-programacion/PEC2/README.md | 2 ++ fundamentos-programacion/PEC3/README.md | 2 ++ fundamentos-programacion/PEC4/README.md | 2 ++ fundamentos-programacion/PEC5/README.md | 2 ++ fundamentos-programacion/PEC6/README.md | 2 ++ fundamentos-programacion/PEC7/README.md | 6 +++++- fundamentos-programacion/PR1/README.md | 2 ++ fundamentos-programacion/PR2/README.md | 3 ++- fundamentos-programacion/PR3/README.md | 2 ++ fundamentos-programacion/PR4/README.md | 2 ++ fundamentos-programacion/README.md | 4 +--- 12 files changed, 27 insertions(+), 6 deletions(-) diff --git a/fundamentos-programacion/PEC1/README.md b/fundamentos-programacion/PEC1/README.md index 6794df5..1915cd4 100644 --- a/fundamentos-programacion/PEC1/README.md +++ b/fundamentos-programacion/PEC1/README.md @@ -699,4 +699,6 @@ int main() { ``` -[Volver arriba](#pec-1) \ No newline at end of file +[Volver arriba](#pec-1) + +[Volver a la página principal de "Fundamentos de la Programación"](../README.md) | [Seguir a la PEC 2](../PEC2/README.md) diff --git a/fundamentos-programacion/PEC2/README.md b/fundamentos-programacion/PEC2/README.md index 7ed89bc..69dbafd 100644 --- a/fundamentos-programacion/PEC2/README.md +++ b/fundamentos-programacion/PEC2/README.md @@ -203,3 +203,5 @@ El puntero solo contiene la dirección inicial y el tipo es lo que nos permitir Hay que tener presente que el contenido de un puntero a entero es un entero y, por lo tanto, se puede asignar a una variable de tipo entero y se le puede aplicar cualquier operación entera, como por ejemplo, sumarle otro entero o escribirlo por pantalla. Lo mismo ocurre con cualquier otro tipo, o sea, el contenido de un puntero a real es un real y por lo tanto lo podemos tratar como tal. [Volver arriba](#pec-2) + +[Volver a la PEC1](../PEC1/README.md) | [Seguir a la PEC 3](../PEC3/README.md) diff --git a/fundamentos-programacion/PEC3/README.md b/fundamentos-programacion/PEC3/README.md index b3207fe..07e07a2 100644 --- a/fundamentos-programacion/PEC3/README.md +++ b/fundamentos-programacion/PEC3/README.md @@ -823,3 +823,5 @@ int main(int argc, char **argv) { Siempre se deben tomar precauciones, pero en especial cuando las cadenas de caracteres se crean dentro del programa, por ejemplo concatenando valores o distintas cadenas de caracteres, o cuando las introduce el usuario. [Volver arriba](#pec-3) + +[Volver a la PEC2](../PEC2/README.md) | [Seguir a la PR 1](../PR1/README.md) diff --git a/fundamentos-programacion/PEC4/README.md b/fundamentos-programacion/PEC4/README.md index bc811b4..bff9ebd 100644 --- a/fundamentos-programacion/PEC4/README.md +++ b/fundamentos-programacion/PEC4/README.md @@ -662,3 +662,5 @@ Se deben crear solo los datos estructurados adecuados para el tratamiento de nue [Volver arriba](#pec-4) + +[Volver a la PR1](../PR1/README.md) | [Seguir a la PR 2](../PR2/README.md) diff --git a/fundamentos-programacion/PEC5/README.md b/fundamentos-programacion/PEC5/README.md index 1a18cfd..8d9b1ea 100644 --- a/fundamentos-programacion/PEC5/README.md +++ b/fundamentos-programacion/PEC5/README.md @@ -663,3 +663,5 @@ Y ya podremos compilar y ejecutar el programa. Si todo ha ido bien, obtendremos [Volver arriba](#pec-5) + +[Volver a la PR2](../PR2/README.md) | [Seguir a la PR 3](../PR3/README.md) diff --git a/fundamentos-programacion/PEC6/README.md b/fundamentos-programacion/PEC6/README.md index 5391de8..8b16421 100644 --- a/fundamentos-programacion/PEC6/README.md +++ b/fundamentos-programacion/PEC6/README.md @@ -1631,3 +1631,5 @@ void findInvoice(tInvoices l, int id, bool *found, int *pos){ [Volver arriba](#pec-6) +[Volver a la PR4](../PR4/README.md) | [Seguir a la PEC 7](../PEC7/README.md) + diff --git a/fundamentos-programacion/PEC7/README.md b/fundamentos-programacion/PEC7/README.md index b3587a0..2ccabf2 100644 --- a/fundamentos-programacion/PEC7/README.md +++ b/fundamentos-programacion/PEC7/README.md @@ -1,5 +1,7 @@ # PEC 7 +[Volver a la página principal de "Fundamentos de la Programación"](../README.md) + **Índice** - [PEC 7](#pec-7) - [20. Recursividad](#20-recursividad) @@ -31,4 +33,6 @@ -[Volver arriba](#pec-7) \ No newline at end of file +[Volver arriba](#pec-7) + +[Volver a la PEC 6](../PEC6/README.md) | [Volver al índice principal](../README.md) diff --git a/fundamentos-programacion/PR1/README.md b/fundamentos-programacion/PR1/README.md index 37d0fe5..51bc543 100644 --- a/fundamentos-programacion/PR1/README.md +++ b/fundamentos-programacion/PR1/README.md @@ -775,3 +775,5 @@ action writeBoolean(in varName: boolean); [Volver arriba](#pr-1) + +[Volver a la PEC3](../PEC3/README.md) | [Seguir a la PEC 4](../PEC4/README.md) diff --git a/fundamentos-programacion/PR2/README.md b/fundamentos-programacion/PR2/README.md index 9adfbfd..4895e5d 100644 --- a/fundamentos-programacion/PR2/README.md +++ b/fundamentos-programacion/PR2/README.md @@ -1164,5 +1164,6 @@ algorithm main end algorithm ``` - [Volver arriba](#pr-2) + +[Volver a la PEC4](../PEC4/README.md) | [Seguir a la PEC 5](../PEC5/README.md) diff --git a/fundamentos-programacion/PR3/README.md b/fundamentos-programacion/PR3/README.md index 0847304..ba639ab 100644 --- a/fundamentos-programacion/PR3/README.md +++ b/fundamentos-programacion/PR3/README.md @@ -1509,3 +1509,5 @@ end algorithm [Volver arriba](#pr-3) + +[Volver a la PEC5](../PEC5/README.md) | [Seguir a la PR 4](../PR4/README.md) diff --git a/fundamentos-programacion/PR4/README.md b/fundamentos-programacion/PR4/README.md index c7ea14f..e8552de 100644 --- a/fundamentos-programacion/PR4/README.md +++ b/fundamentos-programacion/PR4/README.md @@ -311,3 +311,5 @@ Tener en cuenta que: [Volver arriba](#pr-4) + +[Volver a la PR3](../PR3/README.md) | [Seguir a la PEC 6](../PEC6/README.md) diff --git a/fundamentos-programacion/README.md b/fundamentos-programacion/README.md index 851bbef..d5bce6c 100644 --- a/fundamentos-programacion/README.md +++ b/fundamentos-programacion/README.md @@ -35,7 +35,7 @@ Aquí dejaré los apuntes de la asignatura "Fundamentos de la programación" de - [PR 3](./PR3/README.md#pr-3) - [16. Tipos de datos estructurados: tabla](./PR3/README.md#16-tipos-de-datos-estructurados-tabla) -- [PR4](./PR4/README.md#pr-4) +- [PR 4](./PR4/README.md#pr-4) - [17. Esquemas de recorrido y búsqueda](./PR4/README.md#17-esquemas-de-recorrido-y-búsqueda) - [PEC 6](./PEC6/README.md#pec-6) @@ -44,5 +44,3 @@ Aquí dejaré los apuntes de la asignatura "Fundamentos de la programación" de - [PEC 7](./PEC7/README.md#pec-7) - [20. Recursividad](./PEC7/README.md#20-recursividad) - -