공부내용

다트문법_random함수

골목코딩 2024. 11. 6. 20:35

import 'dart:math';

int i = Random().nextInt(최대값);

 

최대값이 5면 0~4까지만 반환됨.