學習重點:
主程式:
private void button1_Click(object sender, EventArgs e)
- for迴圈
主程式:
private void button1_Click(object sender, EventArgs e)
{
int row = (int)numericUpDown1.Value;
//強制轉型
String str = "";
for (int i = 1;
i <= row; i++) {
for(int j = 1; j <= i; j++)
{
str += "*";
}
str += "\n";
}
MessageBox.Show(str);
}
執行結果:
出絲絲 絲絲ㄖ絲絲ㄖ絲絲 絲絲絲絲絲絲絲 ㄙ
回覆刪除11
回覆刪除1
1
pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp09)(
回覆刪除