| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 457 人关注过本帖
标题:能让我的这个简单程序跑的更快些么!
取消只看楼主 加入收藏
风影空
Rank: 1
等 级:新手上路
帖 子:73
专家分:2
注 册:2009-7-23
结帖率:75%
收藏
已结贴  问题点数:10 回复次数:0 
能让我的这个简单程序跑的更快些么!
我的运算时上百万的数字,所以用这个程序跑的很慢  能让我的程序优化下么  跑的更快些么!!!

package com.chensong;
import java.math.BigInteger;
import java.util.Scanner;


public class chensong {
    public static void main(String[] args) {
for(int i=1;i<100;i++){
        Scanner reader=new Scanner(System.in);
        System.out.print("p:");
        BigInteger p=new BigInteger(reader.next());
        BigInteger a=new BigInteger("184");
        BigInteger b=a;
        BigInteger c=new BigInteger("1");
        BigInteger d=c;
        
        
     for(int y=1319;y<p.intValue();y++){
          if(!(b.pow(y).divideAndRemainder(p)[1].intValue()==d.intValue())){
            
          }
         
          else if (b.pow(y).divideAndRemainder(p)[1].intValue()==d.intValue()) {
              
        System.out.println("y:"+y);
        
    }
         
     }
    }

    }
}
搜索更多相关主题的帖子: package public import 
2010-12-21 19:44
快速回复:能让我的这个简单程序跑的更快些么!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015899 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved