作者cool79518 (吃飯睡覺打東東)
看板C_and_CPP
標題[問題] 請教如何畫出這個圖
時間Thu Jan 6 22:47:32 2011
開發平台(Platform): (Ex: VC++, Gcc, Linux, ...)
DEV C++
額外使用到的庫(Library Used) (Ex: OpenGL, ...)
問題(Question):
請教如何畫出這個圖 教教我
*****
* *** *
** * **
*** ***
** * **
* *** *
*****
餵入的資料(Input):
預期的正確結果(Expected Output):
錯誤結果(Wrong Output):
程式碼(Code): (請善用置底文標色功能)
這是我的程式碼(算是暴力寫法)能否告訴我更好的寫法
for(int i=1;i<=7;i++){
for(int j=1;j<=7;j++){
if(j+i==8 ||j==i)
cout<<" ";
else
cout<<"*";
}
cout<<endl;
}
補充說明(Supplement):
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 122.118.58.20
→ tropical72:if(i==j || i==N-j-1) cout << ' '; 01/06 22:51
→ tropical72:else cout << "*"; 01/06 22:51
→ tropical72:不算暴力啊.. 01/06 22:51
→ loveme00835:論系列文的可能 XD 01/06 22:52
→ cool79518:tropical72大大我照你的畫出來會有錯誤 01/06 23:05
→ cool79518:是我打錯了 謝謝大大 01/06 23:12
推 cobrasgo:直接print出來加換行不就好了? 01/07 01:03
推 dendrobium:printf(" ***** \n* *** *\n** * **\n ...\n"); //??? 01/07 17:54
→ cool79518:cobrasgo大大 謝謝你的建議,可是我不想要用這種方法 01/07 21:56
→ sunneo:看到標題還以為是要UML ... 欺騙我的感情O_Q 01/09 03:10