Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 15, 2021 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/23fb75f1929a63b47ca5a7ca392697e6 to your computer and use it in GitHub Desktop.
Save parzibyte/23fb75f1929a63b47ca5a7ca392697e6 to your computer and use it in GitHub Desktop.
// Declaramos tres arreglos, uno por cada columna de la tabla
// Primero los nombres
array<string, 4> articulos = {
"Pantalones",
"Camisas",
"Sacos",
"Sombreros",
};
// Luego los costos
array<double, 4> costos = {
25, 1, 1, 5};
// Finalmente las existencias
array<int, 4> cantidades = {
150, 100, 2, 10}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment