Climbing的专栏
Life is limited, but art is long
hpdlzu80100
登录
注册
全站
当前博客
空间
博客
好友
相册
留言
huang Climbing
ID:hpdlzu80100
[修改头像]
共
1574
次访问,排名
2万外
好友
5
人,关注者
6
人
热爱生活,积极向上,流自己的汗,吃自己的饭!
hpdlzu80100的文章
原创 23 篇
翻译 0 篇
转载 2 篇
评论 0 篇
最近评论
软件项目交易
订阅我的博客
文章分类
IT Industry and Career
(RSS)
Java Learning
(RSS)
Temp
(RSS)
收藏
相册
存档
2008年05月(1)
2008年04月(24)
170以内阶乘表(Factorial list up to 170)
新一篇: 勾股数列表(Find Pythagorean Triples)
//
Display a factorial list up to 170
//
Java How to Program, 5/e, Exercise 5.8
import
javax.swing.
*
;
public
class
FactorialList
{
public
static
void
main(String args[])
{
double
factorial;
int
number;
String Number;
Number
=
JOptionPane.showInputDialog(
"
Enter a nonegative integer
"
);
number
=
Integer.parseInt(Number);
JTextArea outputArea
=
new
JTextArea(
20
,
30
);
JScrollPane scroller
=
new
JScrollPane(outputArea);
outputArea.setText(
"
n! \tResult
"
);
for
(
int
counter
=
1
;counter
<=
number;counter
++
)
{
factorial
=
1
;
for
(
int
i
=
1
;i
<=
counter;i
++
)
factorial
*=
i;
outputArea.append(counter
+
"
! \t
"
+
factorial
+
"
\n
"
);
}
JOptionPane.showMessageDialog(
null
, scroller,
"
Factorial Calculation
"
,JOptionPane.INFORMATION_MESSAGE);}
}
发表于 @
2008年04月08日 15:25:00
|
评论(
loading...
)
|
编辑
旧一篇: 自然对数e及e的x次方的计算(Calculation of natural exponent e and x power of e)
评论:没有评论。
发表评论
姓 名:
主 页:
校验码:
看不清,换一张
登录