How do I display a battleship board game?

3 ビュー (過去 30 日間)
Aman Kumar
Aman Kumar 2022 年 1 月 8 日
編集済み: Image Analyst 2022 年 1 月 9 日
I'm designing a battleship game with two 6-by-6 game boards for the player and a computer, and each grid needs to have be numbered 1-36, so how can I do that please?
  1 件のコメント
John D'Errico
John D'Errico 2022 年 1 月 8 日
編集済み: Image Analyst 2022 年 1 月 9 日
Surely, before you post multiple new questions about basic problems in this project, you should look at the dozens of questions posted by your classmates over the last few weeks about battleship. You might learn something from them. Click on the battleship tag on the right side of this page.

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2022 年 1 月 8 日
image([0.5 5.5], [0.5 5.5], ones(6,6,3));
xticks(0:6); xticklabels([]);
yticks(0:6); yticklabels([]);
grid on
[X,Y] = ndgrid(0.5:5.5, 0.5:5.5);
text(X(:), Y(:), string(1:36))
  2 件のコメント
Aman Kumar
Aman Kumar 2022 年 1 月 8 日
How do I place multiple battleships on there,one 1x2,two 1x3, one 1x4, one 1x5

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStrategy & Logic についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by