2021-10-24 14:01:57 +02:00
|
|
|
#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) {
|
2021-10-24 21:20:30 +02:00
|
|
|
int capturas = screen();
|
|
|
|
printf("CAPTURAS: %i \n", capturas);
|
2021-10-24 14:01:57 +02:00
|
|
|
|
2021-10-24 21:20:30 +02:00
|
|
|
if (capturas > 0){
|
|
|
|
printf("NORABOA!\n"); //indicar o tempo total
|
|
|
|
}
|
2021-10-24 14:01:57 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|