I hereby claim:
- I am eduardodx on github.
- I am eduardodx (https://keybase.io/eduardodx) on keybase.
- I have a public key ASBhPLyClSlKGap9T-3V8vFiAAQum91VJxJP_P1gRZwxsgo
To claim this, I am signing this object:
Loja | População | Vendas | |
---|---|---|---|
1 | 2 | 58 | |
2 | 6 | 105 | |
3 | 8 | 88 | |
4 | 8 | 118 | |
5 | 12 | 117 | |
6 | 16 | 137 | |
7 | 20 | 157 | |
8 | 20 | 169 | |
9 | 22 | 149 |
Indivíduo | Idade | Tempo de reação | Sexo | Acuidade visual | |
---|---|---|---|---|---|
1 | 20 | 96 | 1 | 90 | |
2 | 20 | 92 | 0 | 100 | |
3 | 20 | 106 | 1 | 80 | |
4 | 20 | 100 | 0 | 90 | |
5 | 25 | 98 | 0 | 100 | |
6 | 25 | 104 | 1 | 90 | |
7 | 25 | 110 | 1 | 80 | |
8 | 25 | 101 | 0 | 90 | |
9 | 30 | 116 | 0 | 70 |
I hereby claim:
To claim this, I am signing this object:
http://www.johndcook.com/blog/2009/07/31/software-that-gets-used/ | |
1. was developed to address existing needs, not speculation of future needs; | |
2. solved a general problem; and | |
3. was simple, often controversially simple. |
/** | |
* Font: EB Garamond <http://www.georgduffner.at/ebgaramond/> | |
* and use of 2 columns | |
*/ | |
html { | |
line-height: 1.5em; | |
text-align: justify; | |
font-family: "EB Garamond" !important; |
#include <unistd.h> // lib para o delay => usleep() | |
#include <stdlib.h> | |
#include <time.h> | |
#include <ncurses.h> | |
#define H 25 // altura do mapa | |
#define W 42 // largura do mapa | |
#define UP 0 | |
#define RIGHT 1 | |
#define DOWN 2 | |
#define LEFT 3 |
#include <stdio.h> | |
int main () { | |
int c[100][4], i, j, n, area_total, ax, ay; | |
area_total = 0; | |
// Limpando o vetor | |
for (i = 0; i < 100; i++) { | |
c[i][0] = 0; |
#include <stdio.h> | |
int main() { | |
char opcao; | |
scanf("%c", &opcao); | |
switch(opcao) { |