C-Logic/Logic2.c
Brian Bassanetti b30d72555b
Initial commit
2023-05-30 11:50:35 +02:00

16 lines
401 B
C

#include <stdio.h>
int main(){
int i;
printf("To use the cinema discount, please verify your age: ");
scanf("%d",&i);
if(i=>64 || i>=5 && i<=18){
printf("The discount code is 886yknuyfjmf, make sure to show it up at the cinema emtrance when asked\n");
}
else{
printf("You're not eligible for th discount. Make sure you've entered the right age and try again.\n");
main();
}
return 0;
}