-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode actividad 3.cpp
46 lines (33 loc) · 1.35 KB
/
code actividad 3.cpp
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <iostream>
#include <string>
int main() {
int numVendedores;
std::cout << "Ingrese la cantidad de vendedores: ";
std::cin >> numVendedores;
std::string nombres[numVendedores];
double ventas[numVendedores][4];
for (int i = 0; i < numVendedores; i++) {
std::cout << "Ingrese el nombre del vendedor " << i + 1 << ": ";
std::cin >> nombres[i];
for (int j = 0; j < 4; j++) {
std::cout << "Ingrese las ventas del mes " << j + 1 << " para " << nombres[i] << ": ";
std::cin >> ventas[i][j];
}
}
std::cout << "\nInforme de ventas y promedio por vendedor:\n";
double promedioTotal = 0.0;
for (int i = 0; i < numVendedores; i++) {
double totalVentas = 0.0;
for (int j = 0; j < 4; j++) {
totalVentas += ventas[i][j];
}
double promedioVendedor = totalVentas / 4;
promedioTotal += promedioVendedor;
std::cout << "Vendedor: " << nombres[i] << "\n";
std::cout << "Ventas totales: " << totalVentas << "\n";
std::cout << "Promedio de ventas: " << promedioVendedor << "\n\n";
}
double promedioTotalVendedores = promedioTotal / numVendedores;
std::cout << "Promedio de ventas de todos los vendedores: " << promedioTotalVendedores << "\n";
return 0;
}