lunes, 22 de agosto de 2011
sábado, 20 de agosto de 2011
libros de servicio movistar para blackberry
Hola blogeros, hace tiempo que no publicaba nada, ya saben uno que si estudia ja ja ja, bueno hoy les traigo algo que muchos han buscado durante años, asi es, son los libros de servicios de MOVISTAR para la blackberry, pero ademas les traigo una alternativa mas para aquellos que quitaron su chip de su blackberry y perdieron los libros o tambien que no se acuerden de su contraseña o usuario como me paso a mi (ja ja ja) en fin les dare primero la alternativa que yo ocupe dado que no encontraba los libros de servicio de movistar:
ALTERNATIVA 1: (se reinicia hasta el final) .....seguir leyendo
sábado, 13 de agosto de 2011
martes, 22 de marzo de 2011
CODIGO EN BORLAN C++,EJERCICIO COMPAÑIA ASEGURADORA("CLASES TIPO METODOS,MATRIZEZ)
El siguiente problema fue compilado en borlan c++ , las condiciones que marca nuestro problema y la forma en que fue resuelto puede ser difernete ala de alguien mas, existen difernet formas de programar,espero haberlo hecho de la mejor manera y espero les sea util..
creo que es un problemas sencillo xD.. fue un ejercicio de examen...
LA COMPAÑIA ASEGURADORA DEL PACIFICO PAGA $5,000 SEMANALES A SUS EMPLEADOS MAS UNA COMISICION DEL 9% DEL TOTAL DE VENTAS REALIZADAS.LA COMPAÑIA ASEGURADORA SOLICITA AL DEPARTAMENTO DE SISTEMAS QUE LE DESARROLLE UN PROGRAMA EN C++ QUE PIDA AL USUARIO EL MONTO DE VENTAS Y DETERMINE EL PAGO QUE DEBERA REALIZARSE A CADA VENDEDOR. UNA VEZ QUE HA CALCULADO EL PAGO DE CADA VENDEDOR LA COMPAÑIA GENERA UN REPORTE DE LA CANTIDAD DE VENDEDORES CUYO PAGO EXCEDIO LOS $8000.
creo que es un problemas sencillo xD.. fue un ejercicio de examen...
LA COMPAÑIA ASEGURADORA DEL PACIFICO PAGA $5,000 SEMANALES A SUS EMPLEADOS MAS UNA COMISICION DEL 9% DEL TOTAL DE VENTAS REALIZADAS.LA COMPAÑIA ASEGURADORA SOLICITA AL DEPARTAMENTO DE SISTEMAS QUE LE DESARROLLE UN PROGRAMA EN C++ QUE PIDA AL USUARIO EL MONTO DE VENTAS Y DETERMINE EL PAGO QUE DEBERA REALIZARSE A CADA VENDEDOR. UNA VEZ QUE HA CALCULADO EL PAGO DE CADA VENDEDOR LA COMPAÑIA GENERA UN REPORTE DE LA CANTIDAD DE VENDEDORES CUYO PAGO EXCEDIO LOS $8000.
#include <stdio.h>
#include <conio.h>
class ventas
{
public:
char nombre[20];
int total_ventas;
float sueldo,total;
#include <conio.h>
class ventas
{
public:
char nombre[20];
int total_ventas;
float sueldo,total;
aseguradora()
{
{
total_ventas=0;
sueldo=0;
}
sueldo=0;
}
void Ingresar_datos(ventas x[]);
void Comparacion(ventas x[]);
};
void ventas::Ingresar_datos(ventas x[])
{
int i=0;
for(i=0;i<3;i++)
{
printf("nombre: \n");
scanf("%s", &x[i].nombre);fflush(stdin);
printf(" ingresa el total de ventas: \n ");
scanf("%i", &x[i].total_ventas);
x[i].sueldo= 5000 +(x[i].total_ventas* .09 );
//printf("%.2f ",x[i].sueldo);
printf("\n");
}
}
{
int i=0;
for(i=0;i<3;i++)
{
printf("nombre: \n");
scanf("%s", &x[i].nombre);fflush(stdin);
printf(" ingresa el total de ventas: \n ");
scanf("%i", &x[i].total_ventas);
x[i].sueldo= 5000 +(x[i].total_ventas* .09 );
//printf("%.2f ",x[i].sueldo);
printf("\n");
}
}
void ventas::Comparacion(ventas x[])
{
int i=0;
printf("\n vendedores con sueldo mayor a 8000 \n\n\n");
for(i=0;i<3;i++)
{
if(x[i].sueldo>=8000)
{
if(x[i].sueldo>=8000)
{
printf("nombre %s\n\n\n", x[i].nombre );
printf("sueldo %.2f\n\n\n", x[i].sueldo);
printf("sueldo %.2f\n\n\n", x[i].sueldo);
}
}
}
}
void main()
{
ventas vendedores[3];
ventas obj;
obj.Ingresar_datos(vendedores);
{
ventas vendedores[3];
ventas obj;
obj.Ingresar_datos(vendedores);
obj.Comparacion(vendedores);
getch();
}
}
viernes, 25 de febrero de 2011
CODIGO EN C++ TIENDA BORLAN (POO)
EL SIGUIENTE CODIGO EN C++ A SIDO COMPILADO EN BORLAN C++,PERO DE IGUAL MANERA PUEDE SERVIR EN DEV C++ O ALGUN OTRO,EN EL CASO DE DEVC++ SOLO ES CUESTIO DE QUE QUITEMOS LOS GOTOXY() Y LISTO...
EL CODIGO SIGUIETE PERMITE CALCULA EL COSTO EL SUBTOTAL Y TOTAL DE LAS COMPRAS DE UN CLIENTE ... APLICANDO UN DESCUENTO A ALGUNAS DE SUS COMPRAS.... A COMTINUACION SE MUESTRA COMO APARECERA EN PANTALA...
};
}
EL CODIGO SIGUIETE PERMITE CALCULA EL COSTO EL SUBTOTAL Y TOTAL DE LAS COMPRAS DE UN CLIENTE ... APLICANDO UN DESCUENTO A ALGUNAS DE SUS COMPRAS.... A COMTINUACION SE MUESTRA COMO APARECERA EN PANTALA...
EN ESTE CASO A ALGUNOS PRODUCTOS LES HEMOS APLICADO UN DESCUENTO
Y AL COSTO TOTAL CUANDO ESTE ES PAGADO AL CONTADO...
#include <stdio.h>
#include <conio.h>
#define P_BROCHAS 10
#define P_RODILLOS 15
#define P_SELLADORES 20
class Tienda
#include <conio.h>
#define P_BROCHAS 10
#define P_RODILLOS 15
#define P_SELLADORES 20
class Tienda
{
int num_brochas,num_rodillos,num_selladores;
float brochas,rodillos,selladores,total_credito,total_contado;
public:
int num_brochas,num_rodillos,num_selladores;
float brochas,rodillos,selladores,total_credito,total_contado;
public:
int cant_art()
{
printf("Ingrese la cantidad de brochas de serda\n\n ");
scanf("%i",&num_brochas);
printf("Ingrese la cantidad de rodillos\n\n ");
scanf("%i",&num_rodillos);
printf("Ingrese la cantidad de sellador\n\n ");
scanf("%i", &num_selladores);
{
printf("Ingrese la cantidad de brochas de serda\n\n ");
scanf("%i",&num_brochas);
printf("Ingrese la cantidad de rodillos\n\n ");
scanf("%i",&num_rodillos);
printf("Ingrese la cantidad de sellador\n\n ");
scanf("%i", &num_selladores);
}
int precio_subtotal()
{
brochas=num_brochas*P_BROCHAS-(num_brochas*P_BROCHAS*.20);
int precio_subtotal()
{
brochas=num_brochas*P_BROCHAS-(num_brochas*P_BROCHAS*.20);
//COMENTARIO...SE LE DESCUENTA EL 20%
rodillos=num_rodillos*P_RODILLOS-(num_rodillos*P_RODILLOS*.15);
rodillos=num_rodillos*P_RODILLOS-(num_rodillos*P_RODILLOS*.15);
//COMENTARIO...SE LE DESCUENTA EL 15%
selladores=(num_selladores*P_SELLADORES);
}
selladores=(num_selladores*P_SELLADORES);
}
int total()
{
printf(" total brochas %.2f \n",brochas);
printf(" total rodillos %.2f \n",rodillos);
printf("total selladores %.2f \n\n\n",selladores);
}
{
printf(" total brochas %.2f \n",brochas);
printf(" total rodillos %.2f \n",rodillos);
printf("total selladores %.2f \n\n\n",selladores);
}
int total_contado_credito()
{
printf("******************\n ");
printf("total a contado\n ");
total_contado=brochas+rodillos+selladores-(brochas+rodillos+selladores*.07);
printf("******************\n ");
printf("total a contado\n ");
total_contado=brochas+rodillos+selladores-(brochas+rodillos+selladores*.07);
//COMENTARIO...SE LE DESCUENTA EL 7%
printf(" %.2f \n\n \n",total_contado);
printf("total a credito\n ");
total_credito=brochas+rodillos+selladores;
printf(" %.2f\n\n\n",total_credito);
printf("GRACIAS POR SU COMPRA\a");
}
printf(" %.2f \n\n \n",total_contado);
printf("total a credito\n ");
total_credito=brochas+rodillos+selladores;
printf(" %.2f\n\n\n",total_credito);
printf("GRACIAS POR SU COMPRA\a");
}
};
int main()
{
printf(" Ferreteria ACME\n\n\n");
printf("*********************\n ");
printf("Nuestros precios\n");
printf("Brochas de serda $10.00\n");
printf("Rodillos $15.00\n");
printf("Sellador $20.00 \n");
printf("******************\n\n\n ");
Tienda ventas;
ventas.cant_art();
ventas.precio_subtotal();
ventas.total();
ventas.total_contado_credito();
getch();
printf("*********************\n ");
printf("Nuestros precios\n");
printf("Brochas de serda $10.00\n");
printf("Rodillos $15.00\n");
printf("Sellador $20.00 \n");
printf("******************\n\n\n ");
Tienda ventas;
ventas.cant_art();
ventas.precio_subtotal();
ventas.total();
ventas.total_contado_credito();
getch();
}
ESPERO LES SEA UTIL..
CODIGO BORLAN C++ EDAD_VOTAR CLASES Y METODOS
EL SIGUIENTE CODIGO LES PERMITIRA MOSTRAR EN PANTALLA LO SIGUIENTE...
public:
}
void compara()
void main()
ESPERO LES SIRVA...
#include <stdio.h>
#include <conio.h>
#include <conio.h>
class EDAD
{
char nombre[50];
int edad;
int edad;
public:
void establecer_mensaje()
{
printf(" Como te llamas?\n ");
scanf("%s",nombre);
printf("Cuantos a±os tienes?\n");
scanf("%i",&edad);
}
void compara()
{
if (edad>=18)
if (edad>=18)
printf("%s ya puedes votar",nombre);
else
printf("%s aun no puedes votar",nombre);
printf("%s aun no puedes votar",nombre);
//ELCAZADOR77.BLOGSPOT.COM
printf("\n\n Pulsa cualquier tecla para terminar...");
printf("\n\n Pulsa cualquier tecla para terminar...");
getch();
}
};
}
};
void main()
{
clrscr();
EDAD votar;
votar.establecer_mensaje();
votar.compara();
getche();
}
Suscribirse a:
Entradas (Atom)