xxxxxxxxxx
8
function setup() {
let i = 0;
while (i < 3) { // フローチャートの「条件式」に対応
print("こんにちは" + i + "さん"); // 「繰り返したい処理」に対応
i++; // i = i + 1; と同じ // 「繰り返し後の処理」に対応
}
print("for文終了");
}
The p5.js Editor uses cookies. Some are essential to the website functionality and allow you to manage an account and preferences. Others are not essential—they are used for analytics and allow us to learn more about our community. We never sell this data or use it for advertising. You can decide which cookies you would like to allow, and learn more in our Privacy Policy.