[플러터] 2. 조건문

백하림's avatar
May 21, 2025
[플러터] 2. 조건문
// 조건문 void main() { int point = 90; if (point >= 90) { print("A학점"); } else if (point >= 80) { print('B학점'); }else{ print("F학점"); } }
notion image
 
Share article

harimmon