Network disconnection
Description
산술 연산자를 이용해서 변수 a, b의 합, 차, 곱을 c, d, e 변수에 각각 저장하세요.
이항연산자는 두개의 피연산자를 가지는 연산자로, 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
var a = 10;
var b = 7;
//c는 a와 b의 합
var c = ;
//d는 a와 b의 차
var d = ;
//e는 a와 b의 곱
var e = ;
console.log("a와 b의 합 :", c);
console.log("a와 b의 차 :", d);
console.log("a와 b의 곱 :", e);
Result
Stop
Result of [Run] or [Submit] will be displayed here