+91-85006-22255
Write a program to calculate the total number of permutations possible.
class NumberOfPermutations { public static void main(String s[]) { System.out.println("Total number of permutations of 13P3 : " + numberOfPermutations(13, 3)); } public static Integer numberOfPermutations(int total, int choiceCount) {
} }
Topic: for Loop In Java
Read this topic Take test on this topic
Open In App