Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
256 B
0
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);
        }
    }
    
}
Leave a Comment