[IOS 로드맵] arithmetic

willis18·2021년 10월 21일
0

IOS 로드맵

목록 보기
105/109
post-custom-banner

arithmetic

사칙 연산자
+, -, /, *

1 + 2       // 3
5 - 3       // 2
2 * 3       // 6
10.0 / 2.5  // 4.0

"hello, " + "world"  // equals "hello, world", string타입은 +로 합칠수 있습니다.

https://jusung.gitbook.io/the-swift-language-guide/language-guide/02-basic-operators

0개의 댓글