Anderson Pozo

Generation

generate functionTue, 18 Jul 2023

Hacer un programa para un cajero automático para ingresar un importe a retirar y convertir el mismo en la cantidad de billetes de $ 1.000, $ 500, $ 200 y $ 100 a entregar. Ejemplo 1: Si el importe a retirar es $ 2.500 se mostrará por pantalla que se deberán entregar 2 billetes de $ 1.000, 1 billete de $ 500 y 0 billetes de $ 200 y $ 100.

#include <stdio.h> int main() { float retiro; int b1000, b500, b200, b100; printf("Ingrese un monto a retirar: \n"); scanf("%f", &retiro); b1000 = retiro / 1000; retiro -= b1000 * 1000; b500 = retiro / 500; retiro -= b500 * 500; b200 = retiro / 200; retiro -= b200 * 200; b100 = retiro / 100; retiro -= b100 * 100; printf("1000: %d\n500: %d\n200: %d\n100: %d\n", b1000, b500, b200, b100); return 0; }

Questions about programming?Chat with your personal AI assistant