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

int func(int x) { int a = x / 1000; x = x % 1000; int b = x / 500; x = x % 500; int c = x / 200; x = x % 200; int d = x / 100; return a + b + c + d; } func(4000);

Questions about programming?Chat with your personal AI assistant