본문 바로가기
Code/CodeUp

Code 100제 (2)

by jaeaemin 2021. 7. 30.

 

6037>

문장 여러 번 출력하기  ( 반복 횟수, 문장 )

n = int(input())
s = input()
for _ in range(n):
    print(s,end='')
 

 

6039>

실수 두 개로 거듭제곱하기 

n1, n2 =  map(float, input().split())
print((n1) ** (n2))

 

 

6042> 

 

실수 1개 입력받고 소숫점이하 자리 변환 

n = float(input())
print(format(n,".2f"))

 

 

 

6044>

정수 2개로 합,,,,나머지, 나눈 값 자동 계산 

( 0 <= a, b <= 2147483647, b 0이 아니다 )

n1 , n2 = map(int,input().split())
print(n1 + n2)
print(n1 - n2)
print(n1 * n2)
print(n1 // n2)
print(n1 % n2)
print(format(n1/n2, ”.2f”))

 

반응형

'Code > CodeUp' 카테고리의 다른 글

Code 100제 (1)  (0) 2021.07.28