ユーザ名: anonymous

[課題]: 複数の円を描画しましょう. ただし,内側5つは青色, 外側5つは赤色で描きましょう.

塗る色が逆です.

    正解出力:

    Image of problem

    あなたの出力:

    loading...

    あなたのコード:

    1function setup() {
    2  createCanvas(120, 120);
    3  background(255);
    4  noFill();
    5  for(let i = 0; i < 10; i++){
    6    let d = (i + 1) * 10;
    7    if (i < 5) {
    8      stroke(255, 0, 0);
    9    } else {
    10      stroke(0, 0, 255);
    11    }
    12    ellipse(width/2, height/2, d, d);
    13  }
    14}
    15