-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01e6abb
commit 1e05a20
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## Atividades Práticas | ||
|
||
1. Faça um programa que permita ao usuário cadastrar seus trabalhos práticos acadêmicos. Cada trabalho será definido como um tema (item), devendo ter as seguintes informações: | ||
|
||
* Código | ||
* Título | ||
* Descrição | ||
* Data de Entrega | ||
|
||
Crie uma estrutura para representar um tema de trabalho com os campos acima. | ||
|
||
O programa deve exibir ao usuário um menu com as opções para: | ||
|
||
* Incluir novo trabalho | ||
* Remover um trabalho (com opções para remover o primeiro, o último e por código) | ||
* Navegar pelos trabalhos (com opção para ver o próximo trabalho e o trabalho anterior) | ||
* Pesquisar um trabalho (com opções de pesquisar por código ou por nome) | ||
* Sair do Programa | ||
|
||
Utilize a TAD de Lista Duplamente Encadeada. | ||
|
||
Sugestão: Crie um arquivo Funcoes.cpp para armazenar suas funções implementadas separadamente da TAD. |