[PL] 06. Expressions and Assignment Statements
Expression 프로그래밍 언어에서 computation을 특정하는 기본 수단 V : (State, Expr) -> Value V는 상태 S에서의 E의 값 S = {x=1, y=2} , V(S, x+y) = 3 산술 계산 Arithmetic Expression : V(s, E1+E2) = V(s, E1) + V(s, E2) 비교 연산 Relational Expression = 논리 연산 Boolean : V(s, E1==E2) = T if V(s, E1) == V(s, E2) Logic Expression Arithmetic Expression 초기 프로그래밍 언어 개발의 동기 구성 operator(연산자) operand(피연산자) 괄호 function call(함수 호출) Operator : 단항 ..