Notice
Recent Posts
Recent Comments
Link
투케이2K
33. (C++) min 사용해 입력 된 두 정수 값 중 최소 값 출력 실시 본문
[개발 환경 설정]
개발 언어 : C++
[소스 코드]
// -----------------------------------------------------------------------------------------
//
// Created by KGH on 2023-02-12.
//
// -----------------------------------------------------------------------------------------
// -----------------------------------------------------------------------------------------
// TODO [헤더 파일 import]
#include "Test.h"
#include <android/log.h>
// -----------------------------------------------------------------------------------------
// -----------------------------------------------------------------------------------------
// TODO [include 및 define 문 정의]
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
// -----------------------------------------------------------------------------------------
// -----------------------------------------------------------------------------------------
// TODO [구현부 소스 코드 작성]
int main(void)
{
/**
* ------------------------------------
* [요약 설명]
* ------------------------------------
* 1. min : 입력된 두 값 중 최소값을 출력합니다
* ------------------------------------
* */
// [변수 선언 실시]
int one = min(1,1);
int two = min(1,2);
int three = min(3,2);
// [로그 출력 실시]
__android_log_print(ANDROID_LOG_WARN, "[C++] [LOG]", "%s", "=====================================================");
__android_log_print(ANDROID_LOG_INFO, "[C++] [LOG]", "[one] :: %d", one);
__android_log_print(ANDROID_LOG_INFO, "[C++] [LOG]", "[two] :: %d", two);
__android_log_print(ANDROID_LOG_INFO, "[C++] [LOG]", "[three] :: %d", three);
__android_log_print(ANDROID_LOG_WARN, "[C++] [LOG]", "%s", "=====================================================");
return 0;
}
// --------------------------------------------------------------------------------------
[결과 출력]
W/[C++] [LOG]: =====================================================
I/[C++] [LOG]: [one] :: 1
I/[C++] [LOG]: [two] :: 1
I/[C++] [LOG]: [three] :: 2
W/[C++] [LOG]: =====================================================
반응형
'C++' 카테고리의 다른 글
35. (C++) reverse 사용해 문자열 역순 (거꾸로) 출력 실시 (0) | 2023.03.05 |
---|---|
34. (C++) max 사용해 입력 된 두 정수 값 중 최대 값 출력 실시 (0) | 2023.03.05 |
32. (C++) map 생성 및 erase , clear 사용해 map 특정 요소 , 전체 요소 삭제 실시 (0) | 2023.03.05 |
31. (C++) map 생성 및 find 사용해 map 에 key 포함 여부 확인 실시 (0) | 2023.03.05 |
30. (C++) map 생성 및 key , value 데이터 삽입 (insert) , for iter 데이터 출력 실시 (0) | 2023.03.05 |
Comments