summaryrefslogtreecommitdiffstats
path: root/2022-2/L8/mitsuo/LAB08_PREG01/main.cpp
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-08-18 01:56:52 -0500
committerMitsuo Tokumori <[email protected]>2023-08-18 01:56:52 -0500
commit49d4392ca1972c8d66b1015f2cdda414d94812b8 (patch)
tree13585bcb546d97b96ec669457c06fc27f2d66ab7 /2022-2/L8/mitsuo/LAB08_PREG01/main.cpp
parentd6e56dbe184cac37d7aa5cebe3e1db108dee4a28 (diff)
downloadLP1-49d4392ca1972c8d66b1015f2cdda414d94812b8.tar.gz
LP1-49d4392ca1972c8d66b1015f2cdda414d94812b8.tar.bz2
LP1-49d4392ca1972c8d66b1015f2cdda414d94812b8.zip
Fix naming. Add leading 0 to lab names
Diffstat (limited to '2022-2/L8/mitsuo/LAB08_PREG01/main.cpp')
-rw-r--r--2022-2/L8/mitsuo/LAB08_PREG01/main.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/2022-2/L8/mitsuo/LAB08_PREG01/main.cpp b/2022-2/L8/mitsuo/LAB08_PREG01/main.cpp
deleted file mode 100644
index b506498..0000000
--- a/2022-2/L8/mitsuo/LAB08_PREG01/main.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * File: main.cpp
- * Author: mitsuo
- * timestamps:
- * - 11:15 (start)
- * - 11:35 read enunciado
- * - 11:58 boilerplate classes done
- * - 12:23 read medicos (slow)
- * - 13:24 read sinreceta and conreceta (also print test)
- * - 13:28 print report
- * - 13:40 search medicamento name
- * - 13:43 search medico specialty (end pregunta1)
- * - 13:48 copy project (end pregunta2) (literally the same)
- *
- * total time: 2h 33m
- *
- * Created on 27 November 2022, 11:32
- */
-
-#include <iostream>
-#include <cstdlib>
-#include "Farmacia.h"
-
-using namespace std;
-
-/* - Leer medicos
- * - Leer recetas (dependiendo del primer digito del medicamento,
- * sera con receta o sin receta)
- * - Buscar nombre de medicamento en medicamentos.csv
- * - Si es con receta busca en lmedicos (medicoId, medicoEsp)
- * - Imprimir sinreceta y luego conreceta.
- */
-int main(int argc, char** argv) {
- Farmacia ofarma;
-
- ofarma.cargaMedico();
- ofarma.leeReceta();
- ofarma.imprimirReceta();
- return 0;
-}
-