要求在----n---处添加语句。 不得加 减行. 加 减句 。 调用函数f 输出n的所有质数因子 如n=13860 则输出2 2 3 3 5 7 1 1 public class JModify2{ public static void f(int n){ int i=2; while(n>1){ ____ 1 ____ System.out.println(i); n/=i; } else ____ 2 ____ } } public static void main(String args[]){ int n=100; f(n); } } |