源码网,源码论坛,源码之家,商业源码,游戏源码下载,discuz插件,棋牌源码下载,精品源码论坛

 找回密码
 立即注册
查看: 174|回复: 20

[ASP.NET] asp.net(c#)复数类(复数加减乘除四则运算)

[复制链接]

7万

主题

861

回帖

32万

积分

论坛元老

Rank: 8Rank: 8

积分
329525
发表于 2007-6-28 00:00:00 | 显示全部楼层 |阅读模式
我的一个JAVA作业,把它改写成asp.net(c#)了
复制代码 代码如下:
protected void Page_Load(object sender, EventArgs e)
    {
        complex complex_a = new complex(1.0, 1.0);
        complex complex_b = new complex(2.0, 2.0);
        Response.Write("加法运算结果:" + complex_a.complex_add(complex_b).ToString() + "<br />");
        Response.Write("减法运算结果:" + complex_a.complex_minus(complex_b).ToString() + "<br />");
        Response.Write("乘法运算结果:" + complex_a.complex_multi(complex_b).ToString() + "<br />");
        Response.Write("除法运算结果:" + complex_a.complex_divide(complex_b).ToString());
    }
    //design by 阿会楠 来自:搜索吧 sosuo8.com
    public class complex
    {
        //复数中的实部
        private double complex_real;
        //复数中的虚部
        private double complex_imagin;

        //构造函数
        public complex(double r, double i)
        {
            complex_real = r;
            complex_imagin = i;
        }

        //重写ToString()方法 
        public override string ToString()
        {
            return this.complex_real + "+" + this.complex_imagin + "i";
        }

        //复数加法运算
        public complex complex_add(complex c)
        {
            //取得加法运算后的实部
            double complex_real = this.complex_real + c.complex_real;

            //取得加法运算后的虚部
            double complex_imagin = this.complex_imagin + c.complex_imagin;

            //返回一个复数类
             return new complex(complex_real,complex_imagin);
        }

        //复数减法运算
        public complex complex_minus(complex c)
        {
            //取得减法运算后的实部
            double complex_real = this.complex_real - c.complex_real;

            //取得减法运算后的虚部
            double complex_imagin = this.complex_imagin - c.complex_imagin;

            //返回一个复数类
            return new complex(complex_real, complex_imagin);
        }

        //乘法运算
        public complex complex_multi(complex c)
        {
            //取得乘法运算后的实部
            double complex_real = this.complex_real * c.complex_real - this.complex_imagin * c.complex_imagin;

            //取得乘法运算后的虚部
            double complex_imagin = this.complex_real * c.complex_imagin + this.complex_imagin * c.complex_real;

            //返回一个复数类
            return new complex(complex_real, complex_imagin);
        }

        //除法运算结果 (a+bi)/(c+di)=(a+bi)(c-di)/(c+di)(c-di)
        public complex complex_divide(complex c)
        {
            //取得(c+di)(c-di)的值
            double d = c.complex_real * c.complex_real + c.complex_imagin * c.complex_imagin;

            //取得除法运算后的实部
            double complex_real = (this.complex_real * c.complex_real + this.complex_imagin * c.complex_imagin) / d;

            //取得除法运算后的虚部
            double complex_imagin = (this.complex_real * (-c.complex_imagin) + this.complex_imagin * c.complex_real) / d;

            //返回一个复数类
            return new complex(complex_real, complex_imagin);
        }
    }


运行结果:

复制代码 代码如下:
加法运算结果:3+3i  
减法运算结果:-1+-1i  
乘法运算结果:0+4i  
除法运算结果:0.5+0i 
回复

使用道具 举报

0

主题

1万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2022-8-17 03:21:59 | 显示全部楼层
来看看!!!
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2023-6-9 06:03:42 | 显示全部楼层
看看看咋么
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

146

积分

注册会员

Rank: 2

积分
146
发表于 2023-7-30 06:03:25 | 显示全部楼层
还可以不错
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

93

积分

注册会员

Rank: 2

积分
93
发表于 2023-10-21 06:50:02 | 显示全部楼层
。。。。。。。。。。。。。。。
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

69

积分

注册会员

Rank: 2

积分
69
发表于 2023-10-28 22:00:21 | 显示全部楼层
我要金豆金豆金豆
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

473

积分

中级会员

Rank: 3Rank: 3

积分
473
发表于 2023-12-7 00:02:38 | 显示全部楼层
很好,谢谢分享
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

55

积分

注册会员

Rank: 2

积分
55
发表于 2024-3-12 08:01:23 | 显示全部楼层
这个源码不错啊
回复 支持 反对

使用道具 举报

29

主题

2万

回帖

194

积分

注册会员

Rank: 2

积分
194
发表于 2024-3-13 21:08:06 | 显示全部楼层
而快乐你们快乐马年快乐
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

93

积分

注册会员

Rank: 2

积分
93
发表于 2024-5-9 07:27:47 | 显示全部楼层
可以,看卡巴
回复 支持 反对

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

手机版|小黑屋|网站地图|源码论坛 ( 海外版 )

GMT+8, 2025-2-2 22:54 , Processed in 0.069736 second(s), 24 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表