Terminal
ENABLE
CONF TERMINAL
#include <SPI.h> | |
#include <UIPEthernet.h> | |
/* | |
*************************************************************** | |
*** *** | |
*** Author: Francisco Chaves *** | |
*** E-mail: [email protected] *** | |
*** Website: www.franciscochaves.com.br *** | |
*** *** |
//diretiva de compilação | |
#define modoDebug 0 | |
#define pinBotao 8 | |
#define pinLed 13 | |
#define SOMA(A , B) A + B | |
#define boasVindas "Olá Seja Bem vindos!!!" | |
void setup() { |
valor = int(input('Entre com um número para saber o fatorial:')) | |
fatorial = 1 | |
while (valor > 1): | |
fatorial = fatorial * valor | |
valor = valor - 1 | |
print('O fatorial é {}.'.format(fatorial)) |
Índice
<html> | |
<body> | |
<form style="border:1px solid #ccc;padding:3px;text-align:center;" action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('https://feedburner.google.com/fb/a/mailverify?uri=franciscochaves', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Enter your email address:</p><p><input type="text" style="width:140px" name="email"/></p><input type="hidden" value="franciscochaves" name="uri"/><input type="hidden" name="loc" value="pt_BR"/><input type="submit" value="Subscribe" /> | |
<p>Delivered by <a href="https://feedburner.google.com" target="_blank">FeedBurner</a></p> | |
</form> | |
<a href="https://feedburner.google.com/fb/a/mailverify?uri=franciscochaves&loc=pt_BR">Subscribe to Francisco Chaves by Email</a> | |
#include <stdio.h> | |
int main() { | |
printf("Ola mundo!!\n"); | |
return 0; | |
} |