yeafee@夜飞郎

it's usually better to solve problems with simplicity and finesse rather than muscle.

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  33 随笔 :: 3 文章 :: 2 评论 :: 0 Trackbacks

 

import  java.io.BufferedReader;
import  java.io.IOException;
import  java.io.InputStreamReader;

public   class  Test {
public   static   void  main(String []args )  throws  IOException   {


BufferedReader  br 
= new  BufferedReader( new  InputStreamReader(System.in));

System.out.println(
" Input one number for jiecen " );
String no
=  br.readLine();
System.out.println(no);

System.out.println(
" the result is: " + n(Integer.valueOf(no)));}





public   static   double  n( int  n) {
    
    
double  result = 1 ;
    
    
while (n > 0 ) {
        
        result 
*= n;
        
-- n;
        }

        
        
return  result;
    
    }

}
posted on 2006-09-16 19:15 @yeafee 阅读(233) 评论(0)  编辑  收藏 所属分类: 程序语言

只有注册用户登录后才能发表评论。


网站导航: