<!DOCTYPE html>
<html>
<body>
Найти цифру 9 среди массива 6.
<br>
<canvas id="myCanvas" width="500" height="500"
style="border:1px solid #d3d3d3;">
</canvas>
<script>
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
ctx.font = "30px Arial";
var ind1 = Math.floor(Math.random() * 20);
var ind2 = Math.floor(Math.random() * 20);
for (var index1 = 0; index1 < 20;index1++){
for (var index2 = 0; index2 < 20;index2++){
if (ind1 == index1 && ind2 == index2){
ctx.fillText("9",index1*25,index2*35);
}
else{
ctx.fillText("6",index1*25,index2*35);
}
}
}
</script>
</body>
</html>
|