- Modificado (modified);
- Preparado (staged/index)
- Consolidado (comitted);
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 "farenheitCelsius" | |
| // Função : Faça um Programa que peça a temperatura em graus Farenheit, | |
| // transforme e mostre a temperatura em graus Celsius. | |
| // C = (5 * (F-32) / 9). | |
| // Autor : Talilo Tarlison | |
| // Data : 17/05/2025 | |
| // Seção de Declarações | |
| var | |
| celsius , farenheit : 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 "farenheitCelsius" | |
| // Função : Faça um Programa que peça a temperatura em graus Farenheit, | |
| // transforme e mostre a temperatura em graus Celsius. | |
| // C = (5 * (F-32) / 9). | |
| // Autor : Samuel T. C. Santos | |
| // Data : 17/11/2014 | |
| // Seção de Declarações | |
| var | |
| celsius , farenheit : 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
| Como fazer um formulário enviar os dados para a mesma página onde ele está localizado? | |
| Basta incluir o nome da página na opção action da tag <form>. Para fazer isso existem duas formas: | |
| 1) Digitar o nome da página. | |
| 2) Usar a variável predefinida PHP_SELF, que contém o nome do script em execução. | |
| Suponha que o formulário está localizado na página modelo.php . Veja os dois exemplos: | |
| <form method="POST" action="modelo.php"> |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <time.h> | |
| #include "forca.h" | |
| char palavrasecreta[TAMANHO_PALAVRA]; | |
| char chutes[26]; | |
| int chutesdados = 0; |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Add React in One Minute</title> | |
| </head> | |
| <body> | |
| <h2>Add React in One Minute</h2> | |
| <p>This page demonstrates using React with no build tooling.</p> |
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
| {"series":[{"name":"how i met your mother","id":"1504912239"}],"genres":[]} |
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
| /* http://meyerweb.com/eric/tools/css/reset/ | |
| v2.0-modified | 20110126 | |
| License: none (public domain) | |
| */ | |
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, 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
| <head> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | |
| </head> | |
| <body> | |
| <div class='container'> | |
| <div class='card'> | |
| <h1> Cadastrar </h1> | |
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
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> | |
| <link rel="stylesheet" href="style.css"> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | |
| <link rel="icon" type="image/png" href="../logo_thicode/png/Asset 15.png" /> | |
| </head> | |
| <body> |
NewerOlder