function Shape() {
this.printStr = "";
return new Shape.prototype.init();
}
Shape.prototype = {
//換行
init: function() {
return this;
},
n: function() {
this.printStr += "\n";
},
//空格
space: function() {
this.printStr += " ";
},
/*
第行輸出
type 類型 實(shí)心 solid 空心 hollow
sp 開始的空格數(shù)
mp 字符之間的空格數(shù)
str 字符
num 次數(shù)
*/
printChar: function(type, sp, mp, str, num) {
this.clean();
switch (type) {
case 'solid':
for (var i = 0; i < sp; i++) {
this.space();
};
for (var i = 0; i < num; i++) {
this.printStr += str;
for (var j = 0; j < mp; j++) {
this.space();
}
}
break;
case 'hollow':
for (var i = 0; i < sp; i++) {
this.space();
};
this.printStr += str;
for (var i = 0; i < num - 1; i++) {
this.space();
for (var j = 0; j < mp; j++) {
this.space();
}
};
this.printStr = this.deleteLastChar(this.printStr)
this.printStr += str;
break;
default:
}
console.log(this.printStr);
// this.clean();
// switch (type) {
// case 'solid':
// for (var i = 0; i < num; i++) {
// this.printStr += str;
// }
// break;
// case 'hollow':
// this.printStr += str;
// num === 2 ? num = 2 : num;
// for (var i = 0; i < num - 2; i++) {
// this.space();
// }
// this.printStr += str;
// break;
// default:
// }
// console.log(this.printStr);
},
//清空當(dāng)前printStr;
clean: function() {
this.printStr = "";
},
deleteLastChar: function(str) {
return str.substring(0, (str.length - 1));
},
/*
矩形
type 類型 實(shí)心 solid 空心 hollow
sp 開始的空格數(shù)
mp 字符之間的空格數(shù)
str 字符
num 次數(shù)
line 行數(shù)
*/
rectangle: function(type, sp, mp, str, num, line) {
switch (type) {
case 'solid':
for (var i = 0; i < line; i++) {
this.printChar(type, sp, mp, str, num);
this.n();
};
break;
case 'hollow':
this.printChar('solid', sp, mp, str, num);
this.n();
for (var i = 0; i < line - 2; i++) {
this.printChar(type, sp, mp, str, num);
this.n();
};
this.printChar('solid', sp, mp, str, num);
this.n();
break;
default:
}
},
/*
三角形
type 類型 實(shí)心 solid 空心 hollow
sp 開始的空格數(shù)
mp 字符之間的空格數(shù)
str 字符
num 次數(shù)
line 行數(shù)
tolerance 公差 必須是大于0的偶數(shù)
*/
triangle: function(type, sp, mp, str, line, tolerance) {
if (tolerance % 2) {
console.log("公差必須是大于0的偶數(shù)");
return;
}
switch (type) {
case 'solid':
for (var i = 1, j = sp, k = line; k > 0; i += tolerance, j -= (tolerance / 2), k--) {
this.printChar("solid", j, mp, str, i);
}
break;
case 'hollow':
for (var i = 1, j = sp, k = line; k > 0; i += tolerance, j -= (tolerance / 2), k--) {
if (k === 1) {
this.printChar("solid", j, mp, str, i);
} else {
this.printChar("hollow", j, mp, str, i);
}
}
break;
default:
}
},
/*
梯形
type 類型 實(shí)心 solid 空心 hollow
sp 開始的空格數(shù)
mp 字符之間的空格數(shù)
str 字符
num 次數(shù)
line 行數(shù)
tolerance 公差 必須是大于0的偶數(shù)
*/
trapezoid: function(type, sn, sp, mp, str, line, tolerance) {
if (tolerance % 2) {
console.log("公差必須是大于0的偶數(shù)");
return;
}
switch (type) {
case 'solid':
for (var i = sn, j = sp, k = line; k > 0; i += tolerance, j -= (tolerance / 2), k--) {
this.printChar("solid", j, mp, str, i);
}
break;
case 'hollow':
for (var i = sn, j = sp, k = line; k > 0; i += tolerance, j -= (tolerance / 2), k--) {
if (k === 1 || k === line) {
this.printChar("solid", j, mp, str, i);
} else {
this.printChar("hollow", j, mp, str, i);
}
}
break;
default:
}
}
}
Shape.prototype.init.prototype = Shape.prototype;
global.wShape = Shape();
//矩形
// var shape = new Shape();
// shape.rectangle('solid', 0, 5, '*', 5, 5);
// console.log("\n");
// var shapee = new Shape();
// shapee.rectangle('hollow', 0, 5, '#', 5, 5);
//三角形
// var shape = new Shape();
// shape.triangle('solid', 30, 0, "*", 10, 2);
// console.log("\n");
// var shapee = new Shape();
// shapee.triangle('hollow', 30, 0, "#", 10, 2);
//梯形
// var shape = new Shape();
// shape.trapezoid('solid', 5, 30, 0, "*", 10, 2);
// console.log("\n");
// var shapee = new Shape();
// shapee.trapezoid('hollow',5 ,30, 0, "#", 10, 2);
//矩形
wShape.rectangle('solid', 30, 5, '*', 5, 5);
console.log("\n");
wShape.rectangle('hollow', 30, 5, '#', 5, 5);
console.log("\n");
//三角形
wShape.triangle('solid', 30, 0, "*", 10, 2);
wShape.triangle('hollow', 30, 0, "#", 10, 2);
console.log("\n");
//梯形
wShape.trapezoid('solid', 5, 30, 0, "*", 10, 2);
wShape.trapezoid('hollow',5 ,30, 0, "#", 10, 2);
nodejs輸出圖形
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)锰扶,“玉大人献酗,你說(shuō)我怎么就攤上這事】琅#” “怎么了罕偎?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)京闰。 經(jīng)常有香客問(wèn)我颜及,道長(zhǎng),這世上最難降的妖魔是什么蹂楣? 我笑而不...
- 正文 為了忘掉前任俏站,我火速辦了婚禮,結(jié)果婚禮上痊土,老公的妹妹穿的比我還像新娘肄扎。我一直安慰自己,他們只是感情好,可當(dāng)我...
- 文/花漫 我一把揭開白布犯祠。 她就那樣靜靜地躺著旭等,像睡著了一般。 火紅的嫁衣襯著肌膚如雪衡载。 梳的紋絲不亂的頭發(fā)上搔耕,一...
- 那天,我揣著相機(jī)與錄音痰娱,去河邊找鬼弃榨。 笑死,一個(gè)胖子當(dāng)著我的面吹牛梨睁,可吹牛的內(nèi)容都是我干的惭墓。 我是一名探鬼主播,決...
- 文/蒼蘭香墨 我猛地睜開眼而姐,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了划咐?” 一聲冷哼從身側(cè)響起拴念,我...
- 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎褐缠,沒(méi)想到半個(gè)月后政鼠,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡城丧,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年稚字,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了砰琢。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
- 正文 年R本政府宣布呢诬,位于F島的核電站涌哲,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏尚镰。R本人自食惡果不足惜阀圾,卻給世界環(huán)境...
- 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望狗唉。 院中可真熱鬧初烘,春花似錦、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至局齿,卻和暖如春剧劝,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背抓歼。 一陣腳步聲響...
- 正文 我出身青樓萄喳,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親蹋半。 傳聞我的和親對(duì)象是個(gè)殘疾皇子他巨,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- 版本記錄 前言 OpenGL 圖形庫(kù)項(xiàng)目中一直也沒(méi)用過(guò)染突,最近也想學(xué)著使用這個(gè)圖形庫(kù),感覺(jué)還是很有意思辈灼,也就自然想著...
- 基本圖形修改主要包括 刪除份企,復(fù)制,鏡像巡莹,偏移司志,陳列,移動(dòng)降宅,旋轉(zhuǎn)骂远,縮放,拉伸拉長(zhǎng)腰根,修剪吧史,延伸,打斷和合并唠雕,分解贸营,等。...
- 我和我的閨蜜吵架了冰啃,愿意很簡(jiǎn)單邓夕,再去上課的路上,我只顧著和別人說(shuō)話從而忽視了她阎毅。其實(shí)焚刚,如果只是這一次,我想我們應(yīng)該...