这是 三个编写要求 请给大虾帮帮我啊 在线等
这是问题
1、请编写程序,用两个TextBox输入两个数字,比较大小并输出结果。
2、请编写程序,求1+2+3+4+...+100这些数中的偶数之和。
3、请编写程序,用for 语句嵌套输出等腰三角形,结果用*号显示。
这是 三个编写要求 请给大虾帮帮我啊 在线等
这是问题
1、请编写程序,用两个TextBox输入两个数字,比较大小并输出结果。
2、请编写程序,求1+2+3+4+...+100这些数中的偶数之和。
3、请编写程序,用for 语句嵌套输出等腰三角形,结果用*号显示。
1.
private void button1_Click(object sender, EventArgs e)
{
if (int.Parse(this.textBox1.Text) > int.Parse(this.textBox2.Text))
{
MessageBox.Show(this.textBox1.Text + ">" + this.textBox2.Text);
}
else
{
MessageBox.Show(this.textBox1.Text + ">" + this.textBox2.Text);
}
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
base.OnKeyPress(e);
if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
{
e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
}
else if (Char.IsPunctuation(e.KeyChar))
{
if (e.KeyChar == '.')
{
if (((TextBox)sender).Text.LastIndexOf('.') != -1)
{
e.Handled = true;
}
}
else
{
e.Handled = true;
}
}
}
private void textBox2_KeyPress(object sender, KeyPressEventArgs e)
{
base.OnKeyPress(e);
if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
{
e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
}
else if (Char.IsPunctuation(e.KeyChar))
{
if (e.KeyChar == '.')
{
if (((TextBox)sender).Text.LastIndexOf('.') != -1)
{
e.Handled = true;
}
}
else
{
e.Handled = true;
}
}
}
2.
int i,sum=0;
for( i =0;i<100;i++)
{
if( i%2 == 0 )
sum+=i;
else
continue;
}
MessageBox.Show(sum.ToString());
3.
int iStep = 20;
int iMax = 2 * iStep - 1;//最多的星号
string sPrefix = " ";//前面的后格
string sOther = " ";
string sStar = "* ";
for (int i = 1; i <= iStep; i++)
{
Console.Write(sPrefix);
for (int j = 0; j < iMax / 2 + 1 - i; j++)
Console.Write(sOther);
int count = 2 * i - 1;
for (int j = 0; j < count; j++)
Console.Write(sStar);
Console.WriteLine();
}
你好,在这里找不到满意答案的话,我建议去威客网上看看,那里是付费的,人家做起来更认真、专业。它很多网络高手帮你网站策划、论文写作、编程设计等。你发布的任务会有很多网友向你发送稿件,有很多方案提供给你,你择优选择稿件付费,价格可以自己定(多少总有人做的,属于卖方市场),猪八戒是比较好的网站,很多个人、公司都在上面发布任务, http://u.zhubajie.com/invite.php?u=1553410&c=b803d72a816f6e96(央视新闻联播报道过,信誉不错的)