1 분 소요

Notices: 블럭 속의 텍스트에 대해 관심을 불러일으킵니다.

[공지사항]

지킬블로그 신규 업데이트 안내 드립니다. default

[공지사항]지킬블로그 신규 업데이트 안내 드립니다. primary

[공지사항]지킬블로그 신규 업데이트 안내 드립니다. info

[공지사항]지킬블로그 신규 업데이트 안내 드립니다. default

[공지사항]지킬블로그 신규 업데이트 안내 드립니다. info

[공지사항]지킬블로그 신규 업데이트 안내 드립니다. info

공지사항입니다. - default
  • 김밥
  • 떡볶이
  • 순대
공지사항입니다. - primary
  • 참깨라면
  • 짜빠구리
  • 신라면
  1. 이불개기
  2. 청소하기
  3. 아침먹기
공지사항입니다. - info
  • 유즈카페
  • 커피특별시
  • 키아누카페
공지사항입니다. - warning
  • 수소
  • 헬륨
  • 리튬
공지사항입니다. - success
  • 아메리카노
  • 미숫가루
  • 라임티
공지사항입니다. - danger
  • 돈코츠라멘
  • 미소라멘
  • 열라면

토스 기술 블로그, 토스 테크

직방 기술 블로그

’-‘: unordered list

  • content-(1)
  • content-(2)
  • content-(3)

‘n’: ordered list

  1. content-(1)
  2. content-(2)
  3. content-(3)

emoji (이모지 적용 안됨, 해결책 찾을 것)

:o::o2::ocean::octopus::oden::office::oil_drum::ok::ambulance::baby_chick:

:dagger::qatar::alembic::rabbit::e-mail::first_quarter_moon::eagle:

image

9901B0445BBD8A9924

유튜브 동영상

quote(인용문)

> 이건 인용문이에요.
  >> 이건 인용문 속 인용문이에요.
# x, y, z 변수에 값 1, 2, 3을 각각 저장
x, y, z = 1, 2, 3
print(x, y, z)
1 2 3

h1

h2

h3

h4

h5
h6
# Python program to find H.C.F of two numbers

# define a function
def compute_hcf(x, y):

# choose the smaller number
    if x > y:
        smaller = y
    else:
        smaller = x
    for i in range(1, smaller+1):
        if((x % i == 0) and (y % i == 0)):
            hcf = i 
    return hcf

num1 = 54 
num2 = 24

print("The H.C.F. is", compute_hcf(num1, num2))
코드를 감쌀 경우 백틱을 써서 감쌉니다.
# Python Program to find the L.C.M. of two input number

def compute_lcm(x, y):

   # choose the greater number
   if x > y:
       greater = x
   else:
       greater = y

   while(True):
       if((greater % x == 0) and (greater % y == 0)):
           lcm = greater
           break
       greater += 1

   return lcm

num1 = 54
num2 = 24

print("The L.C.M. is", compute_lcm(num1, num2))
  • Category: 포스팅의 주제에 대한 분류
  • Tag: 포스팅에서 사용한 언어에 대한 분류(사용한 언어가 없을 경우, CS라고 분류)
<만약 여러="" 언어를="" 태깅할="" 경우=""> python과 c/cpp를 태깅할 경우: tags: [python, c/cpp] 만약>

인용문을 사용할 경우, 단축키 [ctrl + shift + Q]를 입력합니다.

저의 블로그 링크입니다.

네이버블로그(yhon89)

네이버블로그(yhon89e)

티스토리블로그(#파이썬)

Velog블로그(#C-series)

Blex블로그(#CS지식)

Steemit블로그(#경제#경영#정책)

Steve Jobs — Apple Worldwide Developers’ Conference, 1997

댓글남기기