Untitled
unknown
plain_text
a year ago
256 B
11
Indexable
import java.lang.Math;
public class Second {
public static void main(String args[])
{
for(int i = 0; i<6; i++)
{
int a = (int)(Math.random()*10)%6+1;
System.out.println(a);
}
}
}
Editor is loading...
Leave a Comment