zoukankan      html  css  js  c++  java
  • 第二次作业 四则运算


    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();
            }
        }
    }


    
    
  • 相关阅读:
    vue路由篇(动态路由、路由嵌套)----动态路由下再嵌套子路由
    文件、I/O重定向、文本
    Linux基础命令
    Chrome开发者工具(DevTools)使用技巧
    Grid网格布局知识点整理
    Javascript常见数组、字符串API整理
    css 实现瀑布流布局效果
    实时校验输入框内容
    app里遇见的小问题总结
    修复bug: iOS特性会滚动会引起白屏 ,使用 will-change: transform;
  • 原文地址:https://www.cnblogs.com/mengq/p/4861692.html
Copyright © 2011-2022 走看看