Skip to content

Commit

Permalink
13623
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel0406070 committed Sep 5, 2024
1 parent b315be3 commit efeedd3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions C/solved/13623.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include <stdio.h>

int main(){
int a,b,c;
scanf("%d %d %d", &a, &b, &c);

if(a != b && a != c){
printf("A");
}else if(b != a && b != c){
printf("B");
}else if(c != a && c != b){
printf("C");
}
else{
printf("*");
}
}

0 comments on commit efeedd3

Please sign in to comment.