fork(1) download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. Scanner input = new Scanner(System.in);
  13. double A = 0;
  14. double B = 0;
  15. double M = 0;
  16. System.out.println("\n\nHow many sets?");
  17. int s = input.nextInt();
  18. double X[] = new double[s];
  19. for(int i = 0; i<s; i++)
  20. {
  21. System.out.println("A: ");
  22. A = input.nextDouble();
  23. System.out.println("B: ");
  24. B = input.nextDouble();
  25. System.out.println("M: ");
  26. M = input.nextDouble();
  27. X[i] = (Math.pow(A, B)) % M; //(A^B)%M
  28. }
  29. for(int j = 0; j<s; j++)
  30. {
  31. System.out.print(Math.round(X[j]) + " ");
  32. }
  33. }
  34. }
Success #stdin #stdout 0.16s 321344KB
stdin
1
3
3
7
stdout
How many sets?
A: 
B: 
M: 
6