This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Producto = { | |
id:string,nombre:string,precio:int,tipo:varchar | |
'3789','Cuba libre',9,'BEBIDA' | |
'3821','limonada arabe,10,'BEBIDA' | |
'9840','Falafel,12,'COMIDA' | |
'9841','Shawarma,14,'COMIDA' | |
} | |
Bebida = { | |
P.id:string, volumen:int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[main] Building folder: unit-4-heap-y-hash-GunpowderGuy | |
[build] Starting build | |
[proc] Executing command: /usr/bin/cmake --build /home/diego/Documentos/unit-4-heap-y-hash-GunpowderGuy/build --config Release --target all -j 10 -- | |
[build] [3/4 25% :: 0.923] Building CXX object CMakeFiles/poo2_unit5_week7.dir/test_4_3.cpp.o | |
[build] FAILED: CMakeFiles/poo2_unit5_week7.dir/test_4_3.cpp.o | |
[build] /usr/bin/c++ -pthread -O3 -DNDEBUG -std=gnu++17 -MD -MT CMakeFiles/poo2_unit5_week7.dir/test_4_3.cpp.o -MF CMakeFiles/poo2_unit5_week7.dir/test_4_3.cpp.o.d -o CMakeFiles/poo2_unit5_week7.dir/test_4_3.cpp.o -c ../test_4_3.cpp | |
[build] En el fichero incluido desde /usr/include/c++/11.1.0/x86_64-pc-linux-gnu/bits/c++allocator.h:33, | |
[build] desde /usr/include/c++/11.1.0/bits/allocator.h:46, | |
[build] desde /usr/include/c++/11.1.0/string:41, | |
[build] desde ../catch.hpp:481, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Created by rudri on 10/11/2020. | |
// | |
#include <iostream> | |
#include "global.h" | |
#include "p4.h" | |
using namespace std; | |
void question_4_1(){ |