ex1)위와 같이 $ 사인은 간단한 변수들을 출력할때 사용합니다.${}은 변수보다 비교적 복잡한 형태들을 출력합니다.ex2)위와 같은 경우도 클래스의 프로퍼티를 불러와 스트링 형태로 출력하는 복잡한 형태이기 때문에 "$" 대신 "${}" 형태를 사용합니다.
"val" and "var" are both used to declare variables, but they have different meanings and usage."val" is short for "value"is used to declare an "immuta
Kotlin에서 if문은 Java if문 형식과 동일합니다.다만 if-else문의 결과를 바로 변수값에 저장하는 방법이 있습니다.ex1)
Kotlin provides a construct, "when" that is similar to the "switch" statement in Java.input value can be integers, decimals, Strings but logica condit
"for" structure in Kotlinbasic "for" statement"for" statement increasing value by 2. Use "step + n"decreasing-value "for" statement uses caption, "dow
Kotlin에서의 while은 Java와 동일합니다.Basic while statementdo whlie statement