Notice
Recent Posts
Recent Comments
Link
«   2025/09   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

이것저것

C언어 swea 1989 - 초심자의 회문 검사 본문

Language/C언어

C언어 swea 1989 - 초심자의 회문 검사

olivia-com 2020. 11. 20. 09:59

 

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

 

 

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PyTLqAf4DFAUq&categoryId=AV5PyTLqAf4DFAUq&categoryType=CODE&problemTitle=1989&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=&pageSize=10&pageIndex=1

 

 

'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