程序功能如下:有一个主方法main() 以及一个求平方和的方法int square(int x, int y)。square方法计算参数x 和y的平方和,并返回该平方和值。在主方法main中定义两个整型变量,并给它们赋一个初值,然后使用这两个变量作为实际参数来调用square方法,求出平方和,最后输出平方和。
public class Prime1 { public static void main(String args[]) { Prime1 s = new Prime1(); int n = 20; int m = 40; int result = s.square(n, m); System.out.println("平方和为:"+result); } public int square(int x, int y) { return x*x + y*y; } }