//Sample18_02.java class Sample18_02 { public static void main(String[] args){ int dice = (int)( Math.random()*6 ); System.out.println(dice); } }