From 49d4392ca1972c8d66b1015f2cdda414d94812b8 Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Fri, 18 Aug 2023 01:56:52 -0500 Subject: Fix naming. Add leading 0 to lab names --- 2022-2/L8/mitsuo/LAB08_PREG01/main.cpp | 41 ---------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 2022-2/L8/mitsuo/LAB08_PREG01/main.cpp (limited to '2022-2/L8/mitsuo/LAB08_PREG01/main.cpp') 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 -#include -#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; -} - -- cgit v1.2.3