在 Instagram 上關注我們,觀看每日編碼影片
https://www.instagram.com/webstreet_code/
在本影片中,我將向您展示如何使用 JavaScript 建立彩色菱形圖案。這個項目是練習技能和探索如何操作字串和空格以在控制台中對齊的好方法。
這是用來建立菱形圖案的程式碼:
javascript function printDiamond(n) { let pattern = ''; const symbol = '?'; // Diamond symbol // Upper part of the diamond for (let i = 1; i <= n; i++) { pattern += ' '.repeat(n - i); // Add leading spaces for (let j = 0; j < 2 * i - 1; j++) { pattern += symbol + ' '; // Add diamonds with space } pattern += '\n'; // Move to next line } // Lower part of the diamond for (let i = n - 1; i >= 1; i--) { pattern += ' '.repeat(n - i); // Add leading spaces for (let j = 0; j < 2 * i - 1; j++) { pattern += symbol + ' '; // Add diamonds with space } pattern += '\n'; // Move to next line } console.log(pattern); } // Set the number of rows (height of the diamond) let rows = 5; // You can change the number of rows here printDiamond(rows);
以上是使用 javascript 列印鑽石圖案的詳細內容。更多資訊請關注PHP中文網其他相關文章!