{panel:title = *Business Context*}
Xxx
{panel}
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
.customers { | |
list-style: none; | |
max-width: 50rem; | |
margin: 1rem auto; | |
padding: 1rem 0; | |
display: grid; | |
grid-template-columns: repeat(3, 30%); | |
gap: 1rem; | |
justify-content: center; | |
} |
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
.customer { | |
background-color: #fff; | |
border-radius: 8px; | |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | |
padding: 16px; | |
margin: 16px; | |
text-align: left; | |
} | |
.name { |
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
* { | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
} | |
:root { | |
min-height: 100vh; | |
font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 18px; |
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
print("hello world") |
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
Procedimento dividir(inici, fim: inteiro ) | |
var | |
meio:inteiro | |
inicio | |
// dividir | |
se (inici < fim) entao | |
// identifica o meio (divisão resultado inteiro) | |
meio := (inici + fim) DIV 2 | |
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
Algoritmo "filas" | |
// Disciplina : [Linguagem e Lógica de Programação] | |
// Professor : Fernando Silva Maransatto | |
// Descrição : Aqui você descreve o que o programa faz! (função) | |
// Autor(a) : Nome do(a) aluno(a) | |
// Data atual : 02/03/2021 | |
Var | |
fila: vetor[0..49] de caracter | |
primeiro, ultimo: inteiro | |
k: inteiro |
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
Algoritmo "Funções (procedimentos)" | |
// Disciplina : UC4 - Lógica de Programação | |
// Professor : Fernando Silva Maransatto | |
// Descrição : Exemplos de funções e procedimentos | |
// Autor(a) : Maransatto | |
// Data atual : 13/02/2021 | |
Var | |
funcionarios: vetor[0..100, 0..4] de caracter | |
busca: caracter |
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
Algoritmo "Cadastro de Funcionários" | |
// Disciplina : UC4 - Lógica de Programação - SA2 - Atividade 6 - Cadastro de Funcionários | |
// Professor : Fernando Silva Maransatto | |
// Descrição : Efetua um cadastro de funcionários preenchendo uma matriz | |
// Autor(a) : Maransatto | |
// Data atual : 13/02/2021 | |
Var | |
// Seção de Declarações das variáveis | |
funcionarios: vetor[0..4, 0..4] de caractere | |
nome, funcaoFuncionario, idade, sexo, salario: caracter |
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
print("olá mundo") |
NewerOlder