Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ateliware/dojo
dojos realizados na ateliware
https://github.com/ateliware/dojo
Last synced: about 1 month ago
JSON representation
dojos realizados na ateliware
- Host: GitHub
- URL: https://github.com/ateliware/dojo
- Owner: ateliware
- Created: 2014-02-19T16:45:27.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-01-16T12:34:47.000Z (11 months ago)
- Last Synced: 2024-03-27T07:39:47.264Z (9 months ago)
- Language: Ruby
- Homepage: http://ateliware.com.br
- Size: 5.86 KB
- Stars: 0
- Watchers: 57
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
ateliware dojos
==============# Problema 1 - Caixa Eletrônico
## Problema
Quantas cédulas de cada nota são necessárias para somar uma quantidade *x* de dinheiro de forma que o cliente receba o menor número de cédulas possível? Considere que o caixa dispõe de uma quantidade ilimitada de notas de 5, 10, 20, 50 e 100 reais.## Exemplos
Para R$ 105,00:
$ ruby caixa_eletronico.rb 105
Para R$ 105,00:
1 * R$ 5,00
0 * R$ 10,00
0 * R$ 50,00
1 * R$ 100,00Para R$ 11,00:
$ ruby caixa_eletronico.rb 11
Não é possível pagar R$ 11,00.