[問題] 詢問C/C++程式方面的問題

作者: ericleeyusia (Edward)   2019-03-27 02:05:33
開發平台(Platform): (Ex: Win10, Linux, ...)
win10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
c++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
轉成正空心三角形
餵入的資料(Input):
預期的正確結果(Expected Output):
錯誤結果(Wrong Output):
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
#include <stdio.h>
#include <stdlib.h>
int main(void){
int a,b,i,k,p,l,c,m;
// a, i, k =loop index
// b = not used
// p = rows to be drawn
// l = height of the triangle
// c = temp variable for width calculation
// m = width of the triangle
char w;//the star symbol
printf("輸入指定的字元"); scanf("%s",&w);// read symbol
printf("請輸入你要的高度"); scanf("%d",&l);//read height
c=l-3;
m=(c*2)+5;//calculate the width of the triangle
p=l;//rows to draw - I would move this to the second for loop below
for(i=2;i<=m;i++) printf("%c",w); // draw the bottom of triangle
printf("\n"); // finiish the bottom
for(i=2;i<=l;i++) { // draw one line at a time
for(a=2;a<=i;a++) printf(" "); // draw the leading blanks
if(i<l) printf("%c",w); // draw the star, except for the last line
for(k=3;k<=p;k++)printf(" "); //draw the inside of the triangle, left
left half
for(k=4;k<=p;k++)printf(" "); //draw the inside of the triangle, right
right half
printf("%c\n",w); // draw the star at the right side
p
作者: timmy999 (憤怒a阿宅)   2019-03-27 08:22:00
https://ideone.com 貼在這裡吧
作者: s4300026 (s4300026)   2019-03-27 12:18:00
仔細看了一下,這是HW吧? 教寫迴圈的
作者: jerryh001   2019-03-27 18:56:00
所以要問啥
作者: ericleeyusia (Edward)   2019-03-27 20:24:00
我轉不成正三角形QQ
作者: s4300026 (s4300026)   2019-03-27 21:39:00
寫程式基本技巧,把自己當電腦執行。 所以趕快拿起你的紙跟筆,嘻嘻。
作者: kiedveian (極地之星光)   2019-03-27 23:51:00
至少先說一下自己的想法,有做過什麼修改測試
作者: firejox (Tangent)   2019-03-28 13:44:00
仔細看一下,這應該有漏洞(′・ω・`)
作者: ericleeyusia (Edward)   2019-03-28 14:01:00
怎麼說我有試著改上面部分數字 但我還是找不到方向

Links booklink

Contact Us: admin [ a t ] ucptt.com