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
    
  
  
    
  | Var | |
| pessoas: vetor [1..5, 1..5] de caractere | |
| x: inteiro | |
| // Estatisticos: | |
| menorIdade: real | |
| maiorIdade: real | |
| contarFem: real | 
  
    
      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
    
  
  
    
  | Var | |
| // Variaveis Globais: | |
| OperacaoNum : inteiro | |
| tamanho : inteiro | |
| pilha : vetor[0..19] de inteiro | |
| Remove : 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 "FILA" | |
| // | |
| // | |
| // Descrição : FILA | |
| // Autor(a) : Leandro Gonçalves Santana | |
| // Data atual : 8/3/2021 | |
| Var | |
  
    
      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 Funcionarios com Geração de Dados Estatísticos" | |
| // Disciplina : [Linguagem e Lógica de Programação] | |
| // Descrição : Cadastro de Funcionarios com Geração de Dados Estatísticos | |
| // Autor(a) : LEANDRO | |
| // Data atual : 24/02/2021 | |
| Var | |
| pessoas: vetor [1..5, 1..5] de caractere | |
| x: 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 "calculo investimento" | |
| // Professor : Fernando Maransatto | |
| // Descrição : Calculo de Investimento | |
| // Autor(a) : Leandro | |
| // Data atual : 03/02/2021 | |
| Var | |
| // Seção de Declarações das variáveis | |
| valor, taxa, deposito: real | 
  
    
      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 "semnome" | |
| // | |
| // | |
| // Descrição : Aqui você descreve o que o programa faz! (função) | |
| // Autor(a) : Nome do(a) aluno(a) | |
| // Data atual : 27/01/2021 | |
| Var | |
| // Seção de Declarações das variáveis | |
| x,y:real | 
  
    
      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
    
  
  
    
  | n1 = float(input("Digite o primeiro numero: ")) | |
| n2 = float(input("Digite o segundo numero: ")) | |
| op = int(input("Digite 1 - Soma ou 2 - Subtração: ")) | |
| if(op == 1): | |
| soma = n1 + n2 | |
| print(f"{n1} + {n2} = {soma}") | |
| elif(op == 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 "calculadora" | |
| // | |
| // | |
| // Descrição : Aqui você descreve o que o programa faz! (função) | |
| // Autor(a) : Nome do(a) aluno(a) | |
| // Data atual : 27/01/2021 | |
| Var | |
| n1 , n2, r:real | |
| operacao: 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("Cálculo de Imposto de Renda") | |
| print() | |
| #Leitura | |
| Nome = input("Digite o nome: ") | |
| Nascimento = (input("Digite a data de nascimento: ")) | |
| Idade = (input("Digite a idade: ")) | |
| Telefone = (input("Digite o telefone: ")) | |
| CPF = (input("Digite o CPF: ")) | |
| RG = (input("Digite o RG: ")) | |
| Endereço = (input("Digite o endereço: ")) |