赞
踩
function theOutputOne(n) {
let star = '';
for(let i = 0; i < n; i++) {
star += '*'
console.log(star)
}
}
theOutputOne(11)
function theOutputTwo(n) {
let star = '';
for(let i = 0; i < n; i++) {
let space = '';
for(let j = 0; j < n - 1 - i; j++) {
space += " ";
}
star += '*'
console.log(space + star)
}
}
theOutputTwo(11)
function theOutputThree(n) {
for(let i = 0; i < n; i++){
let star = "";
for(let j = 0; j < 2 * i + 1; j++){
star += "*";
}
let space= "";
for(let j = 0; j < n - 1 - i; j++){
space += " ";
}
console.log(space + star);
}
}
function theOutputOneFour(n) {
for(let i = 0; i < n; i++){
let star = "";
for(let j = 0; j < n - i; j++){
star += "*";
}
console.log(star);
}
}
theOutputOneFour(11)
function theOutputFive(n) {
let star = "";
for(let i = 0; i < n / 2; i++){
star += "*";
console.log(star);
}
for(let i = 0; i < parseInt(n / 2); i++){
let star = "";
for(let j = 0; j < parseInt(n / 2) - i; j++){
star += "*";
}
console.log(star);
}
}
theOutputFive(11)
就先写这几种吧,大家如果有需要其他类型的,可以评论区留言。或者大家有其他样式的写法也可以留言哦。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。