Skip to content

Instantly share code, notes, and snippets.

@WadsonGarbes
Created August 23, 2019 00:31
Show Gist options
  • Save WadsonGarbes/40c99a1cf834514086990f1288f96c75 to your computer and use it in GitHub Desktop.
Save WadsonGarbes/40c99a1cf834514086990f1288f96c75 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <string.h>
int main(void)
{
int ct, n;
char nome[100];
scanf("%d", &ct);
do
{
scanf("%s %i", nome, &n);
(strcmp(nome, "Thor")) ? puts("N") : puts("Y");
ct--;
}
while(ct > 0);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment