Network disconnection
Description
변수 a와 b가 각각 다음과 같이 선언되어 있을때 변수 summation
, multiply
, divide
, remainder
, power
를 다음의 값을 가지도록 만들어 보세요.
summation
은 a와 b의 합multiply
는 a와 b의 곱divide
는 a를 b로 나눈 값remainder
는 a를 b로 나눈 나머지power
는 a의 b승
Fill type challenge HOWTO
- In the Fill type challenge, you have to fill the blank with appropriate code
- The given code except the blank cannot be edited.
- An error message will be shown in the Result area when you leave the blank empty.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
a=33
b=3
summation =
multiply =
divide =
remainder =
power =
print("summation은 {}입니다.".format(summation))
print("multiply는 {}입니다.".format(multiply))
print("divide는 {}입니다.".format(divide))
print("remainder는 {}입니다.".format(remainder))
print("power는 {}입니다.".format(power))
Result
Stop
Result of [Run] or [Submit] will be displayed here