楼上的那位哥们正解。但是如果把方法的返回值改为boolean就更完美了。如下:
- boolean checkFermat(int a, int b, int c, int n) {
- boolean result = (Math.pow(a,n)+Math.pow(b, n) == Math.pow(c, n));
- if(result == true)
- System.out.println("老天,费马错了");
- else
- System.out.println("不,确实成立。");
- return result ;
- }
复制代码
楼主,JAVA中Math.pow(a,n)方法,就是返回a的n次方。 |