반응형 C++14 [HackerRank] Pointer - Easy https://www.hackerrank.com/challenges/c-tutorial-pointer/problem Pointer | HackerRank Learn how to declare pointers and use them. www.hackerrank.com #include #include void update(int *a,int *b) { // Complete this function int sum,minus; sum= *a+*b; minus = *a-*b; *a=sum; *b=abs(minus); } int main() { int a, b; int *pa = &a, *pb = &b; scanf("%d %d", &a, &b); update(pa, pb); printf("%d\n%d", a, b).. 2019. 10. 12. [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 2 3 다음 반응형