HZAU-JAVA技术群:7435949
学习Java从零开始-见证2006-Java之路
My Links
BlogJava
首页
新随笔
联系
聚合
管理
Blog Stats
Posts - 42
Stories - 0
Comments - 3
Trackbacks - 0
News
努力总是有希望的。
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔分类
(42)
Java(13)
(rss)
日志(29)
(rss)
随笔档案
(42)
2006年1月 (42)
搜索
积分与排名
积分 - 6677
排名 - 2790
最新评论
1. re: Test_java
dasfdsafds
--sd
2. re: import myjava.PlotOtau和import myjava.*的区别?
评论内容较长,点击标题查看
--Allen
3. re: import myjava.PlotOtau和import myjava.*的区别?
首先你要确认你的路径是完全正确的
--理想
阅读排行榜
1. import myjava.PlotOtau和import myjava.*的区别?(390)
2. ArrayPrint(258)
3. StringDemo(236)
4. 夜(218)
5. IntegerDemo(216)
6. ClassDemo(206)
7. 女孩子(205)
8. StringBufferDemo(199)
9. ComplexNumber(198)
10. CharacterDemo(196)
评论排行榜
1. import myjava.PlotOtau和import myjava.*的区别?(2)
2. Test_java(1)
3. IntegerDemo(0)
4. ClassDemo(0)
5. ComplexNumber(0)
ComplexNumber
1
public
class
ComplexNumber
2
{
3
private
double
x,y;
4
5
public
ComplexNumber(
double
real,
double
imaginary)
6
{
7
this
.x
=
real;
8
this
.y
=
imaginary;
9
}
10
11
public
double
real()
12
{
13
return
x;
14
}
15
16
public
double
imaginary()
17
{
18
return
y;
19
}
20
21
public
double
magnitude()
22
{
23
return
Math.sqrt(x
*
x
+
y
*
y);
24
}
25
26
public
String toString()
27
{
28
return
"
{
"
+
x
+
"
,
"
+
y
+
"
}
"
;
29
}
30
31
public
static
ComplexNumber add(ComplexNumber a,ComplexNumber b)
32
{
33
return
new
ComplexNumber(a.x
+
b.x,a.y
+
b.y);
34
}
35
36
public
ComplexNumber add(ComplexNumber a)
37
{
38
return
new
ComplexNumber(
this
.x
+
a.x,
this
.y
+
a.y);
39
}
40
41
public
static
ComplexNumber multiply(ComplexNumber a,ComplexNumber b)
42
{
43
return
new
ComplexNumber(a.x
*
b.x
-
a.y
*
b.y,a.x
*
b.y
+
a.y
*
b.x);
44
}
45
46
public
ComplexNumber multiply(ComplexNumber a)
47
{
48
return
new
ComplexNumber(x
*
a.x
-
y
*
a.y,x
*
a.y
+
y
*
a.x);
49
}
50
}
posted on 2006-01-09 20:22
Allen
阅读(198)
评论(0)
编辑
收藏
所属分类:
Java
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
import myjava.PlotOtau和import myjava.*的区别?
ClassDemo
ComplexNumber
ArrayPrint
StringBufferDemo
StringDemo
CharacterDemo
CalendarDemo
MathDemo
DayShower