这篇文章只是对 for 循环一个简单应用,没有什么知识含量。
可以跳过这篇文章。
只是我用来保存一下我的代码,保存在本地我嫌碍眼,总想把他删了。
正文部分
公式:其中 width
表示宽度,height
表示高度
16 9 = w i d t h h e i g h t \cfrac{16}{9} = \cfrac{width}{height} 916=heightwidth
javascript
for (let width = 1;width <= 1280;width++){
let height = width * 9 / 16;
if (Number.isInteger(height)) {
console.log(width + "x" + height)
}
}
直接打开浏览器开发工具就可以了。
生成效果如下图: