程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> java-正整數分解質因數的程序

java-正整數分解質因數的程序

編輯:編程解疑
正整數分解質因數的程序

用這個程序感覺沒錯啊,輸入數據後沒反應怎麼回事?
public class Decomposition {
public static void main(String[] args) {
String str="";
int j;
System.out.println("請輸入一個正整數:");
Scanner sc=new Scanner(System.in);
int i=sc.nextInt();
int k=sc.nextInt();
for(j=2;j<=i;j++){
if(i%j==0){
str=str+j+"*";
i=i/j;
j--;
}
}
str=str+j;
sc.close();
System.out.println("分解結果是:"+k+"="+str);
}

}

最佳回答:


 int k = sc.nextInt();
 改成
 int k=i;

 for循環中的內容改成:
 if(i%j == 0){
     str += j;
     if(j<i){
        str += "*";
     }
     i = i/j;
     j--;
 }
u013181058
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved