top of page

소스 코드 제출

공개·회원 52명

2025.08.03


'''
a,b,c=input().split(":")
print(b)

s1,s2=input().split()
S=s1+s2
print(S)

a,b=map(int,input().split())
c=a+b
print(c)

a=float(input())
b=float(input())
c=a+b
print(c)

x=int(input())
print('%x'%x)

n=int(input())
print('%X'%n)

a=input()
n=int(a,16)
print('%o'%n)

a=ord(input())
print(a)

c=int(input())
print(chr(c))

a,b=map(int,input().split())
print(a%b)

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

f1,f2=map(float,input().split())
g=f1/f2
print(format(g,".3f"))

a,b=map(int,input().split())
print(a+b,a-b,a*b,a//b,a%b,sep='\n')
print(format(a/b,".2f"))

a,b,c=map(int,input().split())
x=a+b+c
y=format(x/3,".2f")
print(x,y)
'''
'''
a, b = map(int, input().split())
if a > b:
    print("a is bigger than b")
    print("if")
elif b > a:
    if a % 2 == 0:
        print("""""")
    else:
        print("aaaa")
    print("hi")
else:
    print("bye")
print("hello world")
'''
'''
a,b=map(int,input().split())
x=(89-a)//5+1
print(x+b)
'''

5회 조회
주소 : 경기도 용인시 광교중앙로 302 블루 스퀘어 602호
연락처 : 031) 216 - 1546 ,     031) 215 - 1546
사업자등록번호 : 465-92-00916
​학원 등록 제 4603호
bottom of page