简介: C语言刷题系列——5.使用函数判断完全平方数 一)题目要求 ⭐1,函数接口定义: int IsSquare( int n ); 其中n是用户传入的参数,在长整型范围内。如果n是完全平方数,则函数IsSquare必须返回1,否则返回0。 ⭐2,裁判测试程序样例: #include <stdio.h> #include <math.h> int IsSquare( int n );...
private static boolean isCompSqrt(int p)//判断完全平方数的方法 { boolean flag=false;double fsqrt=Math.sqrt(p);//先将数开平方 int q=(int)fsqrt;//转换成整数,另q为开平方且转换为整数的结果。if(p==Math.pow(q,2))//pow(x,y)就是计算x的y次幂。把开平方后的整数再平方,看...
两个函数选一个就可以,希望对你有帮助。
{ public static void main(String[]args){ int n=0;for(int i=0;i<=100000;i++)//先确定一个在100000内的大概范围 { if(isCompSqrt(i+100)){ n=i;break;} } System.out.print("所求的数是:"+n);} private static boolean isCompSqrt(int p)//判断完全平方数的方法 { boolean ...