열렬히.뛰기

조건문

Language > 프로그래밍 언어 > R > 조건문

if-else문

r
x = 3
if(x < 0) {
	print(-x)
} else {
	print(x)
}

ifelse문

제일 많이 쓰는 구문

switch문

r