-
Notifications
You must be signed in to change notification settings - Fork 6.2k
02 programacao orientada objetos #427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
PLM4
wants to merge
19
commits into
digitalinnovationone:02_programacao_orientada_objetos
Choose a base branch
from
PLM4:02_programacao_orientada_objetos
base: 02_programacao_orientada_objetos
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
02 programacao orientada objetos #427
PLM4
wants to merge
19
commits into
digitalinnovationone:02_programacao_orientada_objetos
from
PLM4:02_programacao_orientada_objetos
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…0_fundamentos Merge dos Exercícios da Branch "00_fundamentos"
…1_estrutura_de_dados Merge dos Exercícios da Branch "01_estrutura_de_dados"
…2_programacao_orientada_objetos Merge dos Exercícios da Branch "02 programacao orientada objetos"
…tema bancario (POO)
…ra o sistema bancario (POO)" This reverts commit e733b14.
…tema bancario (POO)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Sistema Bancário - Gestão de Usuários e Contas
FUNCIONALIDADES E IMPLEMENTAÇÕES:
Novo Usuário: Cadastro de uma pessoa física no sistema, informando nome, CPF, data de nascimento e endereço.
Cada usuário pode ter uma ou mais contas bancárias associadas ao seu CPF.
Nova Conta: Abertura de uma conta bancária para um usuário já cadastrado. Cada conta tem número único sequencial, saldo inicial de R$ 500,00, extrato e contador de saques, e está vinculada a um usuário existente.
Depósito: Permite depósitos apenas de valores positivos, atualizando saldo e extrato da conta autenticada.
Saque: Permite até 3 saques diários de até R$ 500,00 cada, respeitando o saldo disponível e atualizando extrato e contador.
Extrato: Exibe todas as movimentações da conta autenticada e o saldo, com formatação brasileira (ex: R$ 1.000,00).
Listar Contas: Exibe todas as contas cadastradas, mostrando agência, número e titular.
Formatação Brasileira: Todos os valores monetários são exibidos no padrão brasileiro, com separador de milhar e duas casas decimais (ex: R$ 1.000,00, R$ 100,45, R$ 1.000.200,01).
Fluxo recomendado: