본문 바로가기

프로그래밍 문제/정올

604 : 문자열2 - 자가진단3

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
#pragma warning (disable:4996)
 
#include <stdio.h>
#include <string.h>
 
int main()
{
    char word[11][21= { '\0', };
    int index = 0;
 
    for (int i = 0; i < 11; i++)
        scanf("%s", word[i]);
 
    for (int j = 0; j < 10; j++)
    {
        // 해당 문자의 마지막 알파벳
        index = strlen(word[j]) - 1;
 
        if (word[j][index] == word[10][0]) {
            printf("%s\n", word[j]);
        }
    }
 
 
 
    return 0;
}
cs