代码拉取完成,页面将自动刷新
class PrintChar{
constructor(char,num){
this.char = char;
this.num = num;
}
for1(){
for (let i = 0 ;i<this.num;i++){
let result = "";
for (let j = 0; j<i ;j++){
result +=this.char;
}
console.log(result);
}
}
for2(){
for (let i =0; i<this.num ;i++){
let result = "";
for(let j = this.num-1; j>i; j--){
result += this.char;
}
console.log(result);
}
}
for3(){
for (let i =0; i<this.num ;i++){
if (i%2==0) {
let result = "";
for(let j = this.num-1; j>i; j--){
result += this.char;
}
console.log(result);
}
}
}
for4(){
for(let i = 1; i<=this.num; i++){
let result = "";
for(let j = 1; j<=this.num -i;j++){
result += " ";
}
for(let k = 1; k<=2*i-1;k++){
if (i == this.num){
result += this.char;
}else if ((k==1 || k==2*i-1) && i!=this.num) {
result +=this.char;
}else {
result +=" ";
}
}
console.log(result);
}
}
}
var print = new PrintChar("C",10);
print.for1();
console.log("--------------------");
print.for2();
console.log("---------------------");
print.for3();
console.log("---------------------");
print.for4();
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。