- UID
- 19388
- 帖子
- 49
- 主題
- 4
- 精華
- 0
- 積分
- 9
- 楓幣
- 39
- 威望
- 6
- 存款
- 0
- 贊助金額
- 0
- 推廣
- 4
- GP
- 0
- 閱讀權限
- 10
- 性別
- 保密
- 在線時間
- 24 小時
- 註冊時間
- 2012-12-30
- 最後登入
- 2013-2-10
|
本帖最後由 qacqscqsc25 於 2013-1-21 10:48 編輯
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string text = "";
for (int i = 1; i <= 19; i++)
{
text += "11 x" + i + " = " + 11 * i + "\r\n";
}
MessageBox.Show(text);
}
}
}
這個是C#乘法的代碼
希望對新手有幫助 |
|