打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
C#窗体——100以内加法做题程序

项目链接

https://download.csdn.net/download/weixin_45525272/14951671

结果图(可以按照这样做控件,也可以优化,另减法乘法等类似可以自行添加功能优化界面)

代码实现

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 小学生100以内加法计算器
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void label1_Click(object sender, EventArgs e)
        {
            

        }

        private void label3_Click(object sender, EventArgs e)
        {
            
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            Random a = new Random();
            int num1 = a.Next(0, 50);
            label1.Text = num1.ToString();
            int num2 = a.Next(0, 50);
            label3.Text = num2.ToString();
        }
        double d, b, f = 0; double g;
        private void button1_Click(object sender, EventArgs e)
        {
            f = f + 1;
            if (textBox1.Text == "")
            { 
                MessageBox.Show("错误");
            }
            string  x = label1.Text;
            string y = label3.Text;
            string c = (int.Parse(x) + int.Parse(y)).ToString();
            if (textBox1.Text == c)
            {
                listBox1.Items.Add(x + "+" + y + "=" + c + " √");
                d = d + 1;
            }

            if (textBox1.Text != c)
            {
                listBox1.Items.Add(x + "+" + y + "=" + c + " ×");
                b = b + 1;
            }
           
            Random a = new Random();
            int num1 = a.Next(0, 50);
            label1.Text = num1.ToString();
            int num2 = a.Next(0, 50);
            label3.Text = num2.ToString();
            g = (d / f) * 100;
            g=Math.Round(g,2);
            

        }

       

        private void button3_Click(object sender, EventArgs e)
        {
            textBox1.Text = "";
            listBox1.Items.Clear();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            listBox1.Items.Add("共出题数" + f + "正确数" + d + "错误数" + b + "得分" + g);
        }

       
    }
}

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
C#线程开发:winform简单的C#线程开发实例
实现 winform 异步跨线程访问UI控件
[VB.NET]文件操作
Repeater读取数据并分页
asp.net2.0 hiddenfield控件_asp.net技巧-NET编程
C#多线程
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服