System.out.println("2 to the power of" + i + " is "+
System.out.println("2 to the power of" + p + " is "+
}
}
35. Predict the output :
class FindFac {
public static void main(String args[]) {
for(int i = 2; i <= 100; i++) {
System.out.print("Factors of" + i + ": ");
for(int j = 2; j <i; j++)
if((i%j) == 0) System.out.print(j + " ");
System.out.println();
}
}
Answers
Answered by
0
Answer:
HOPE IT HELPS...
Explanation:
BHAI EVEN I AM A BEGINNER
AGAR ANSWER AA JAAYE TO MUJHE BHI BTANA
Similar questions