四则运算封装

form1

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;
using System.IO;

namespace 四则运算
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        public static int right = 0;
        private int t = 60;
        public static int Count = 0;
        string path = "d:\text.txt";

        private void button4_Click(object sender, EventArgs e)
        {
            label2.Text = t.ToString();
            timer1.Enabled = true;
            timer1.Interval = 1000;
            timer1.Start();
        }

        private void timer1_Tick_1(object sender, EventArgs e)
        {
             if (t <= 0)
            {
                timer1.Enabled = false;
                //textBox7.Enabled = false;
                MessageBox.Show("答题时间到!");
                textBox4.Enabled = false;
            }
            t = t- 1;
            label2.Text = t.ToString();

        }

        private void button7_Click(object sender, EventArgs e)
        {
            textBox2.Text = "*";

        }

        private void button5_Click(object sender, EventArgs e)
        {
            textBox2.Text = "+";

        }

        private void button6_Click(object sender, EventArgs e)
        {
            textBox2.Text = "-";

        }

        private void button8_Click(object sender, EventArgs e)
        {
            textBox2.Text = "/";

        }

        private void button2_Click(object sender, EventArgs e)
        {
            textBox4.Enabled = false;
            Form2 frm = new Form2();
            frm.ShowDialog();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            SaveFileDialog TxtSaveDialog = new SaveFileDialog();
            TxtSaveDialog.Filter = "文本文档(*.txt)|*.txt";
            if (File.Exists(path))
            {

                this.richTextBox1.LoadFile(path, RichTextBoxStreamType.PlainText);
                MessageBox.Show("保存成功", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                this.richTextBox1.Clear();

            }
            else
            {
                if (TxtSaveDialog.ShowDialog() == DialogResult.OK)
                {

                    this.richTextBox1.SaveFile(TxtSaveDialog.FileName, RichTextBoxStreamType.PlainText);
                    MessageBox.Show("保存成功", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    this.richTextBox1.Clear();

                }

            }
        }
        private void button1_Click(object sender, EventArgs e)
        {
            StreamWriter bc1 = File.AppendText("bc1.txt");
            bc1.WriteLine(textBox1.Text);
            bc1.Close();
            StreamWriter bc2 = File.AppendText("bc2 .txt");
            bc2.WriteLine(textBox2.Text);
            bc2.Close();
            StreamWriter bc3 = File.AppendText("bc3.txt");
            bc3.WriteLine(textBox3.Text);
            bc3.Close();

            richTextBox1.Text += textBox1.Text + textBox2.Text + textBox3.Text + label3.Text + textBox4.Text + "\n";
            textBox1.Clear();
            textBox2.Clear();
            textBox3.Clear();
            textBox4.Clear();
        }

        private void button9_Click(object sender, EventArgs e)
        {
            int n1 = int.Parse(textBox1.Text.Trim());
            int n2 = int.Parse(textBox3.Text.Trim());
            Char y = Convert.ToChar(textBox2.Text.Trim());
            fengzhaung con = new  fengzhaung();
            con.cl(n1, n2, y);

            if (con.result == int.Parse(textBox4.Text.Trim()))
            {
                MessageBox.Show("回答正确!");
                right++;
                Count++;
            }

            else
            {

                MessageBox.Show("回答错误");
                Count++;

            }

        }

    }
}

  form2

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 四则运算
{
    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() + "%";

        }
    }
}

封装类代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 四则运算
{
    class fengzhaung
    {

       public char ysf;

       public int result = 0;
       public void cl(int number1, int number2, char ysf)
        {
            if(ysf==‘+‘)
            {
                 result=number1+number2;

            }
            if (ysf == ‘-‘)
            {
               result=number1-number2;

            }
            if (ysf== ‘*‘)
            {
              result=number1*number2;

                }
           if (ysf == ‘/‘)
            {
              result=number1/number2;

               }
         }
 }
    }

测试:

 保存:

  

时间: 2024-12-15 11:29:55

四则运算封装的相关文章

四则运算--封装

我的队友:杜殷浩  201306114426 SiZe.java import java.util.*; import java.util.Random; import java.text.DecimalFormat; public class SiZe { static int num_2 = 0; public static void main(String[] args) { DecimalFormat dFormat=new DecimalFormat("#.00"); whi

作业五 关于封装与测试 拿我小学生四则运算为例

我的封装: 1 class yy 2 { 3 private int max=4; 4 private int min=1; 5 private double w2,m2; 6 private String ff; 7 Random random = new Random(); 8 9 //System.out.println(s); 10 public yy() 11 { 12 int s = random.nextInt(max)%(max-min+1) + min; 13 14 doubl

作业5 四则运算 测试与封装 5.2

作业5 四则运算 测试与封装  5.2 开发环境:   Eclipse 开发人员:   欧其锋(201306114305) 余汉城(201306114317)(http://www.cnblogs.com/yuhancheng/) 分工:   欧其锋:异常处理 余汉城:重构 源代码: 1 package GongNengpk; 2 3 import GongNengpkTest.ChuShuLingException; 4 import GongNengpkTest.JCException; 5

四则运算测试与封装5.1 结对

开发环境:eclipse 结对同伴 :罗凯杰 同伴博客:http://www.cnblogs.com/lkjie/ 未封装的程序: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Size { public static void main(String[] args) { // TODO Auto-generated method stub myframe f=new myframe(

20150421 作业5 测试与封装 四则运算

大家写了不少四则运算的练习,这些代码都各有特色,大家写的 “软件” 也有一定的用处. 如果我们要把这个功能放到不同的环境中去 (例如,命令行,windows 图形界面程序,网页程序,手机App), 就会碰到困难, 因为目前代码的普遍问题是代码都散落在main() 函数或者其他子函数中,我们很难把这些功能完整地剥离出来,作为一个独立的模块满足不同的需求. 我们看到,不同的代码解决不同层面的问题,有些是内部数据的计算 (例如四则运算):有些是和用户输入相关的 (例如 scanf,cin,图形界面的输

四则运算,测试与封装。

测试与封装 5.1 程序开发简介: [开发环境]:eclipse [开发人员]:Ives & 郑胜斌 [博客地址]:http://www.cnblogs.com/IvesHe/ [开发时间]:2015-04-30 [版本]:5.1 [要求]: 封装 测试 [分工]: Ives:单元测试.界面.自定义异常. 郑胜斌:封装 Expression类. 封装: 概念 封装是把过程和数据包围起来,对数据的访问只能通过已定义的接口.面向对象计算始于这个基本概念,即现实世界可以被描绘成一系列完全自治.封装的对

四则运算的封装

封装: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 软件工程作业 { class Enclosure { private double x;//第一个数 public double X { get { return x; } set { x = value; } } private double y;//第二个数 public double Y {

四则运算《《《代码封装

设计思路: 因为TabControl可以设置不同页的选项卡.所以我用它来分页,进行出题,答题设置.然后用savefiledialog保存所出题目.设置两个RichTextBox保存所出题目和出好题后做题时显示的题目.用Count计算做题总数,Right计算做正确的数目.点击结束时弹出Form对话框显示做题情况. 具体实现代码: Form1.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Component

作业5 四则运算 测试与封装 5.1

刘恒 http://www.cnblogs.com/iliuh/ chaorenken http://www.cnblogs.com/lixuanzong/ 这个是主函数 package tion; import java.util.*; import java.applet.*; //引入Applet类 import java.awt.*; import java.awt.event.*; //引入系统事件类包. public class ta extends Applet implement