반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Exoplayer
- 자격증
- Android
- 온라인코딩
- phpstorm
- mysql 5.7
- 온라인IDE
- utf8mb4
- BottomSheetDialog
- 걸음수 감지 센서
- 걸음 감지 센서
- powercfg
- 자기장 센서
- 온라인무료코딩사이트
- RecyclerView
- 온라인에디터
- setBackgroundResource
- 회전 센서
- LayoutParmas
- 동영상 실행
- 코틀린
- Aplha
- ARGB
- 금속 탐지기 센서
- Android Studio 3.6
- Kotlin
- 웹코드빌드
- lateinit
- 광 센서
Archives
- Today
- Total
Memory
[Android/Kotlin] 산술연산자(덧셈, 뺄셈, 곱셈, 나눗셈) 본문
반응형
더하기 (plus)
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/plus.html
val num1 = 10
val num2 = 2
val type1 = num1 + num2
println(type1)
val type2 = num1.plus(num2)
println(type2)
빼기 (minus)
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/minus.html
val num1 = 10
val num2 = 2
val type1 = num1 - num2
println(type1)
val type2 = num1.minus(num2)
println(type2)
곱하기 (times)
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/times.html
val num1 = 10
val num2 = 2
val type1 = num1 * num2
println(type1)
val type2 = num1.times(num2)
println(type2)
나누기 (div)
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/div.html
val num1 = 10
val num2 = 2
val type1 = num1 / num2
println(type1)
val type2 = num1.div(num2)
println(type2)
나머지 (rem)
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/rem.html
val num1 = 10
val num2 = 2
val type1 = num1 % num2
println(type1)
val type2 = num1.rem(num2)
println(type2)
반응형
'IT > ANDROID' 카테고리의 다른 글
[Android/Kotlin] Collections - take, takeWhile, takeLast, takeLastWhile (0) | 2023.06.13 |
---|---|
[Android] API 28 미만에서 Line Height와 비슷한 효과 내는 방법 (lineSpacingExtra, lineSpacingMultiplier) (0) | 2023.06.01 |
[Android/Kotlin] 온라인 무료 코딩 사이트, 온라인 에디터, 온라인 IDE (0) | 2023.02.07 |
[ANDROID/KOTLIN] 일주일 날짜 구하기 (1) | 2021.01.23 |
[ANDROID/KOTLIN] 태블릿 기기인지 코드로 확인하는 방법 (0) | 2021.01.23 |