이것저것
C언어 swea 1989 - 초심자의 회문 검사 본문
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
int main(void){
int test_case, i, j,length;
char word[10];
scanf("%d", &test_case);
for(i = 0; i < test_case; i++){
scanf("%s", word);
length = strlen(word); //문자열 길이
bool palindrome = true;
for(j = 0; j<length/2; j++){ // j번째 문자와 length -1-j 문자가 같은지 확인
if(word[j] != word[length -1 -j]){
palindrome = false; //같지 않다면 false
break;
}
}
printf("#%d %d\n", i+1,palindrome);
}
return 0;
}
'Language > C언어' 카테고리의 다른 글
C언어 백준 1065 - 한수 (0) | 2020.11.20 |
---|---|
C언어 백준 1120 변형 (0) | 2020.11.20 |
C언어 swea 1945 - 간단한 소인수분해 (0) | 2020.11.20 |
C언어 swea 2072 홀수만 더하기 (0) | 2020.11.20 |
C언어 swea 2047 신문 헤드라인 (0) | 2020.11.20 |