第二次作业 四则运算


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 Windowss { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public static int Count = 0;//题目总数 public static int right = 0;//正确的题目总数 private void button1_Click(object sender, EventArgs e) { RandomNum(); } //产生一个0-10的随机数并在文本框中显示 private void RandomNum() { Random ran=new Random (); int n1,n2; n1=ran .Next (1,11);//产生一个数 n2 = ran.Next(1, 11);//产生一个数 textBox1.Text = n1.ToString(); textBox2.Text = n2.ToString(); textBox3.Text = ""; Count++; } private void textBox3_KeyDown(object sender, KeyEventArgs e) { int txb; string tb=textBox4.Text; switch(tb) { case "+": txb =int. Parse(textBox1.Text)+int .Parse (textBox2 .Text ); break ; case "-": txb =int .Parse ( textBox1 .Text)-int .Parse ( textBox2.Text ); break; case "*": txb =int .Parse ( textBox1 .Text )*int .Parse ( textBox2 .Text ); break ; default: txb =int .Parse ( textBox1 .Text )/int .Parse ( textBox2 .Text ); break ; } if ( e.KeyCode ==Keys.Enter ) { if ( textBox3.Text == txb.ToString()) right++; RandomNum(); } } private void button2_Click(object sender, EventArgs e) { textBox3.Enabled = false; Form2 frm2 = new Form2(); frm2.ShowDialog (); } private void button3_Click(object sender, EventArgs e) { new Form3().Show(); } private void label3_Click(object sender, EventArgs e) { textBox4.Text = "+"; } private void label4_Click(object sender, EventArgs e) { textBox4.Text = "-"; } private void label5_Click(object sender, EventArgs e) { textBox4.Text = "*"; } private void label6_Click(object sender, EventArgs e) { textBox4.Text = "/"; } private void button2_Click_1(object sender, EventArgs e) { textBox3.Enabled = false; Form2 frm2 = new Form2(); frm2.ShowDialog(); } private void button3_Click_1(object sender, EventArgs e) { new Form3().Show(); } } }
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 Windowss
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

        private void Form2_Load(object sender, EventArgs e)
        {
            textBox1.Text = Form1.Count.ToString();//题目总数
            textBox2.Text = Form1.right.ToString();//正确题目数目
            textBox3.Text = ((Form1.right / (double)(Form1.Count)) * 100).ToString() + "%";//题目正确率
        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}

 
  
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 Windowss
{
    public partial class Form3 : Form
    {
        public Form3()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}


 

 
 

 

转载于:https://www.cnblogs.com/mengq/p/4861692.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值