Programing Language

Programing Language/[C++]

Size of integral types (type 별 max, min값)

c++ 라이브러리에서는 또는 를 통해서 정수의 형식에 대한 정보를 사용할 수 있다. 공식 문서 -> https://cplusplus.com/reference/climits/ https://cplusplus.com/reference/climits/ MB_LEN_MAXMaximum number of bytes in a multibyte character, for any locale1 or greater* cplusplus.com 꼭 헤더파일 선언 해줘야한다. #include CHAR_MIN Minimum value for an object of type char either SCHAR_MIN or 0 CHAR_MAX Maximum value for an object of type char..

Programing Language/[python]

[python] 변수 , 타입, 조건문

#1 변수 x = 1 y = 2 print(x) print(y) z = "안녕" print(z) #2 타입 숫자 x = 1 y = 2 z = 1.2 print(x + y) print(x - y) print(x * y) print(x / y) print(x ** Y) #제곱 print(x % y) #mod (x를 y로 나눈 나머지) print(x // y) #x 를 y 로 나눈 몫 문자열 x = "hello" y = 'bye' z = """ 안녕하세요 워니입니다 """ print(x) print(y) print(z) print("너 혹시 몇 살이니?" + 4) Traceback (most recent call last): File "main.py", line 1, in print("너 혹시 몇 살이니?" ..

orange_mj
'Programing Language' 카테고리의 글 목록 (2 Page)