-
Notifications
You must be signed in to change notification settings - Fork 0
/
Funciones.h
28 lines (25 loc) · 913 Bytes
/
Funciones.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef FUNCIONES_H
#define FUNCIONES_H
struct venta{
std::string created;//Fecha de compra 2020-10-14
int sku;//identificador de producto
int quantity;//cantidad adquirida
float amount;//valor de los productos adquiridos (en CLP)
std::string name;//indica el nombre del producto y sirve de descripción
};
struct FechaV{
int id;
int fecha;//Fecha de compra 20201014 de tipo entero
int cantVentas;//cantidad de ventas en ese dia
};
void Participantes();
std::vector<std::string> obtenerlinea(std::string);
venta guardarVenta(std::vector<std::string>);
void imprimirvector(std::vector<venta>);
void imprimirvectorF(std::vector<FechaV>);
int cambioFecha( std::string);
std::vector<FechaV> FuncionOrdenar(std::vector<venta>);
void CalculoPendiente(std::vector<venta>, std::vector<FechaV>);
void CalculoIntercepto(std::vector<FechaV>, double);
void Formula(double, double);
# endif