💻 Hacer un programa dónde en una Corporación comercial se registra el nombre, género y la cantidad de ventas realizado durante el mes de cada uno de sus N empleados, se pide calcular el total de ventas realizadas por género durante el mes así con el porcentaje de mujeres que trabajan en la corporación.
A. Estructura del pseudocódigo y entrada de datos.
B. Cantidad de ventas por género.
C. El porcentaje de mujeres que trabajan en la corporación.
D. Mostrar el resultado de los cálculos.
* PSeInt :
Algoritmo full_codigos
Definir cont, ventas, empleados, tv_h, tv_m, muj como entero;
Definir nom, genero como Caracter;
tv_h <- 0;
tv_m <- 0;
muj <- 0;
Escribir "30. CALCULA EL TOTAL DE VENTAS.";
Escribir Sin Saltar "CANTIDAD DE EMPLEADOS : ";
Leer empleados;
Escribir "";
Para cont <- 1 Hasta empleados Con paso 1 Hacer
Escribir "EMPLEADO Nro ",cont,"/",empleados;
Escribir Sin Saltar "NOMBRE : ";
Leer nom;
Escribir Sin Saltar "GÉNERO (H/M) : ";
Leer genero;
Escribir Sin Saltar "VENTAS : ";
Leer ventas;
Escribir "";
Si (genero == "H") Entonces
tv_h <- tv_h + ventas;
SiNo
tv_m <- tv_m + ventas;
muj <- muj + 1;
FinSi
FinPara
Escribir "TOTAL DE VENTAS HOMBRES : ",tv_h;
Escribir "TOTAL DE VENTAS MUJERES : ",tv_m;
Escribir "";
Escribir "PORCENTAJE DE MUJERES : ",(muj * 100)/empleados, " %";
FinAlgoritmo
* Python :
print("TOTAL DE VENTAS POR SEXO.")
tv_h=0; tv_m=0; muj=0; empleados=0;
empleados = int(input("\nCANTIDAD DE EMPLEADOS : "))
for cont in range(0,empleados):
nom = input("\nNOMBRE : ")
genero = input("GÉNERO H/M :")
ventas = int(input("VENTAS : "))
if genero.upper() == "H":
tv_h = tv_h + ventas
else:
tv_m = tv_m + ventas
muj+=1
print("\nTOTAL DE VENTAS HOMBRES : ", tv_h)
print("TOTAL DE VENTAS MUJERES : ", tv_m)
print("PORCENTAJE DE MUJERES : ", (muj*100)/empleados,"%")
* Lenguaje C :
#include<stdio.h>
#include<string.h>
#define MAX_STRLEN 256
int main() {
int ventas, empleados, tv_h=0, tv_m=0, muj=0;
char nom[MAX_STRLEN], genero[MAX_STRLEN];
printf("CANTIDAD DE EMPLEADOS : ");
scanf("%d",&empleados);
for(int cont=1; cont <= empleados; cont++){
printf("\nEMPLEADO Nro. %d/%d\n",cont,empleados);
printf("NOMBRE : ");
scanf("%s",&nom);
printf("GENERO [H/M] : ");
scanf("%s",&genero);
printf("VENTAS : ");
scanf("%i",&ventas);
if(strcmp(genero, "H") == 0){
tv_h += ventas;
}else{
tv_m += ventas;
muj += 1;
}
}
printf("\nTOTAL DE VENTAS HOMBRES : S/.%d",tv_h);
printf("\nTOTAL DE VENTAS MUJERES : S/.%d",tv_m);
printf("\nPORCENTAJE DE MUJERES : %d PORCIENTO.",((muj * 100)/empleados) );
return 0;
}
* C++ :
#include<iostream>
using namespace std;
int main() {
int ventas, empleados, tv_h=0, tv_m=0, muj=0;
string nom, genero;
cout << "CANTIDAD DE EMPLEADOS : ";
cin >> empleados;
cout << endl;
for(int cont=1; cont <= empleados; cont++){
cout << "EMPLEADO Nro. " << cont <<"/"<< empleados << endl;
cout << "NOMBRE : ";
cin >> nom;
cout << "GENERO [H/M] : ";
cin >> genero;
cout << "VENTAS : ";
cin >> ventas;
if(genero == "H"){
tv_h += ventas;
}else{
tv_m += ventas;
muj += 1;
}
cout << endl;
}
cout << "TOTAL DE VENTAS HOMBRES : S/." << tv_h << endl;
cout << "TOTAL DE VENTAS MUJERES : S/." << tv_m << endl;
cout << "PORCENTAJE DE MUJERES : " << ((muj * 100)/empleados) << "%" << endl;
return 0;
}
* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace full_codigos
{
class ventas_realizadas
{
static void Main(string[] args)
{
Console.ReadLine();
}
}
}
* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class ventas_realizadas {
public static void main(String[] args) {
}
}