任意输入数计算他有多少种和

时间:2011-12-23 16:44:12
【文件属性】:
文件名称:任意输入数计算他有多少种和
文件大小:905B
文件格式:SLN
更新时间:2011-12-23 16:44:12
总和 using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace 任意数计算 { /// /// Form1 的摘要说明。 /// public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Button button1; /// /// 必需的设计器变量。 /// private System.ComponentModel.Container components = null; public Form1() { // // Windows 窗体设计器支持所必需的 // InitializeComponent(); // // TODO: 在 InitializeComponent 调用后添加任何构造函数代码 // } /// /// 清理所有正在使用的资源。 /// protected override void Dispose( bool disposing ) { if( disposing ) { if (components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows 窗体设计器生成的代码 /// /// 设计器支持所需的方法 - 不要使用代码编辑器修改 /// 此方法的内容。 /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.Location = new System.Drawing.Point(16, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(88, 24); this.label1.TabIndex = 0; this.label1.Text = "请输入数据:"; // // label2 // this.label2.Location = new System.Drawing.Point(0, 104); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(224, 40); this.label2.TabIndex = 1; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(136, 24); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(120, 21); this.textBox1.TabIndex = 2; this.textBox1.Text = ""; // // button1 // this.button1.Location = new System.Drawing.Point(56, 64); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(88, 32); this.button1.TabIndex = 3; this.button1.Text = "计算"; this.button1.Click += new System.EventHandler(this.button1_Click); // // Form1 // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(292, 266); this.Controls.Add(this.button1); this.Controls.Add(this.textBox1); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); } #endregion /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.Run(new Form1()); } private void button1_Click(object sender, System.EventArgs e) { int i; i=int.Parse(textBox1.Text); int m=0; int num=1; int[] js=new int[i+2]; for(int t=0;tjs[j-2]+1) { int t=js[j-1]-1; js[j-2]++;j--; for(;;) { if(t>=js[j-1]*2){j++;js[j-1]=js[j-2];t=t-js[j-1];} else { j++;js[j-1]=t;break;} } } else { js[j-2]+=js[j-1]; j--; } m++; if(js[0]==i)break; }

网友评论