Sistema de Gestión de Inventario en C++
Enviado por Chuletator online y clasificado en Informática y Telecomunicaciones
Escrito el en
español con un tamaño de 5,97 KB
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
string token(string, string, int);
void agregar();
void agregaringre();
void listar();
void listar2();
int main() {
int menu;
cout << "\tmenu\n1.Salir\n2.Agregar un nuevo producto al inventario\n3.Listar";
cin >> menu;
switch (menu) {
case 1:
system("pause");
return 0;
break;
case 2:
system("cls");
agregar();
system("pause");
break;
case 3:
system("cls");
int submenu;
cout << "Listar\n1.Listar todos los productos (nombre y la existencia)\n2.Listar todos los productos (nombre del pdt, nombre de ingre)\n3.Listar un producto... Continuar leyendo "Sistema de Gestión de Inventario en C++" »
catalán con un tamaño de 5,5 KB