18 lines
343 B
C
18 lines
343 B
C
#include <stdio.h>
|
|
#include "defs.h"
|
|
|
|
double distancia(struct coord c, struct coord e);
|
|
struct coord fuxir(struct coord c, struct coord e);
|
|
int screen();
|
|
|
|
int main(void) {
|
|
int capturas = screen();
|
|
printf("CAPTURAS: %i \n", capturas);
|
|
|
|
if (capturas > 0){
|
|
printf("NORABOA!\n"); //indicar o tempo total
|
|
}
|
|
|
|
return 0;
|
|
}
|