#include <stdio.h>
int main(void)
{
int arr[5] = { 3, 5, 4, 6, 1 };
max = arr[0];
for(i = 1; i < 5; i++) if(max < arr[i]) max = arr[i];
printf("max: %d", max);
return 0;
}
728x90
반응형
'CS > Algorithm 문제' 카테고리의 다른 글
[BaekJoon] 백준 11328번 Strfry (0) | 2019.10.21 |
---|---|
[Algorithm] STL vector (0) | 2019.10.14 |
[Algorithm] bits/stdc++.h 헤더 (0) | 2019.09.19 |
[Algorithm] cin/cout 시간초과 방지 (0) | 2019.09.19 |
[SW Expert Academy] 2072. 홀수만 더하기 (0) | 2019.09.16 |