画面全体を正方形で埋めようとしていますが、それぞれが異なる色で塗りつぶされています。正方形でいっぱいの画面全体を生成することはできますが、それらをランダムな色にすることはできません。これが私がこれまでに持っているものです:
import java.util.Random;
public class RGBRandom
{
public static void main(String[] args)
{
StdDraw.setScale(0, 100);
for (int x = 0; x <= 100; x++)
{
for (int y = 0; y <= 100; y++)
{
int r = (int)Math.random()*256;
int g = (int)Math.random()*256;
int b = (int)Math.random()*256;
StdDraw.setPenColor(r, g, b);
StdDraw.filledSquare(x, y, 0.5);
}
}
}
}