728x90
반응형
https://www.acmicpc.net/problem/2204
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#define _CRT_SECURE_NO_WARNINGS
#pragma warning(disable: 4996)
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
char arr[1000][20];
char newArr[1000][20];
char ans[1000][20];
int main() {
int n;
int cnt = 0;
while (true) {
scanf("%d", &n);
if (n == 0) {
break;
}
//대문자로
for (int i = 0; i < n; i++) {
char c[20] = {};
scanf("%s", c);
for (int j = 0; j < sizeof(c); j++) {
arr[i][j] = c[j];
if (c[j] >= 'a' && c[j] <= 'z') {
c[j] = c[j] - 'a' + 'A';
}
}
for (int j = 0; j < sizeof(c); j++) {
newArr[i][j] = c[j];
}
}
int minIndex = 0;
for (int i = 0; i < n; i++) {
int ans = 0;
ans = strcmp(newArr[minIndex], newArr[i]);
if (ans>0) {
minIndex = i;
}
}
printf("%s", arr[minIndex]);
printf("\n");
}
}
|
cs |
마지막에 개행문자를 안써줘서 틀렸습니다가 계속 나왔다. 만약 틀렸습니다가 나온다면 이것을 고려해보면 좋을 듯하다. 실버 5인데도 c언어는 char배열 다루는게 너무 짜증난다. 빨리 1학기가 끝났으면 좋겠다,,,,
728x90
반응형
'C > 중간고사 대비 (2022 1학기)' 카테고리의 다른 글
[C 백준] 대소문자 바꾸기 (0) | 2022.04.01 |
---|---|
[C 백준] 실버 1/ 1149번 RGB 거리 (0) | 2022.03.26 |
[C백준] 실버 5/ 1018번 체스판 다시 칠하기 (0) | 2022.03.20 |
[C언어 백준] 실버 4/ 1213번 팰린드롬 만들기 (0) | 2022.03.17 |
단축키 (0) | 2022.03.10 |
댓글