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
| // O QUE SERÁ UTILIZADO | |
| // 1. Setlocale | |
| // 2. função e chamada de função [OK] | |
| // 3. função void [OK] | |
| // 4. switch case [OK] | |
| // PROJETO | |
| // 1. Possuir Menu de opções |
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
| // O QUE SERÁ UTILIZADO | |
| // 1. Setlocale | |
| // 2. função e chamada de função | |
| // 3. função void | |
| // 4. switch case | |
| // PROJETO | |
| // 1. Possuir Menu de opções |
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
| // O QUE SERÁ UTILIZADO | |
| // 1. Setlocale | |
| // 2. função e chamada de função | |
| // 3. função void | |
| // 4. switch case | |
| // PROJETO | |
| // 1. Possuir Menu de opções |
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
| #!/bin/bash | |
| # Atualizar repositórios e pacotes | |
| echo "Atualizando repositórios e pacotes..." | |
| sudo pacman -Syu --noconfirm | |
| # Instalar yay (se ainda não estiver instalado) | |
| if ! command -v yay &> /dev/null | |
| then | |
| echo "Instalando yay..." |
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
| <meta charset="UTF-8"> | |
| <script> | |
| function pulaLinha() { | |
| document.write('<br>'); | |
| } | |
| function mostra(txt) { | |
| document.write(txt); | |
| pulaLinha(); |
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
| # Crie um gráfico de barras olhando a faixa etária e o valor da variação; | |
| # Faça outro gráfico de barras com a faixa etária e a quantidade de empresas que estão em cada faixa etária; | |
| # Explore os tipos de gráficos com os dados já feitos. | |
| import pandas as pd | |
| import plotly.express as px | |
| # Crie um gráfico de barras olhando a faixa etária e o valor da variação; |