美文网首页
2018-10-17乘法计算器

2018-10-17乘法计算器

作者: 小短腿慢慢走 | 来源:发表于2018-10-18 10:10 被阅读0次

    计算按钮

     private void button1_Click(object sender, EventArgs e)
     { 
    
      float num1 = 0;
    
      float num2 = 0;
    
      float result = 0;
    
      num1 = float.Parse(textBox1.Text); 
    
      num2 = float.Parse(textBox2.Text);
    
      result = num1 * num2;
    
      textBox3.Text = result.ToString(); 
    }
    

    清除按钮

     private void button2_Click(object sender, EventArgs e)
    
     {
    
      textBox1.Text = "";
    
      textBox2.Text = "";
    
      textBox3.Text = "";
    
     }
    
    image

    相关文章

      网友评论

          本文标题:2018-10-17乘法计算器

          本文链接:https://www.haomeiwen.com/subject/mlrjzftx.html