반응형 HackerRank #해커랭크 #c++ #Algorithm #알고리즘1 [HackeRank] 함수(Functions_easy) 문제 설명 https://www.hackerrank.com/challenges/c-tutorial-functions/problem Functions | HackerRank Learn how to write functions in C++. Create a function to find the maximum of the four numbers. www.hackerrank.com input에 4개의 숫자가 들어가면 output에는 4개의 숫자들 중 제일 큰 수가 나오도록 하는 것이었다. #include #include using namespace std; int max_of_four(int a, int b, int c, int d) { int arr[4]= {a,b,c,d}; int temp; for(int .. 2019. 10. 1. 이전 1 다음 반응형