elefantes/main.c
2021-10-24 21:20:30 +02:00

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;
}