第二次实验报告动手动脑
Posted 0518liu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第二次实验报告动手动脑相关的知识,希望对你有一定的参考价值。
返回值不一样 一个是int整形 一个是double类型
还有就是没有写输出语句直接用对方法赋值的方法进行计算
public class MethodOverload {
public static void main(String[] args) {
System.out.println("The square of integer 7 is"+square(7));
System.out.println("
The square of double 7.5 is"+square(7.5));
}
public static int square(int x) {
return x*x;
}
public static double square(double y) {
return y*y;
}
}
以上是关于第二次实验报告动手动脑的主要内容,如果未能解决你的问题,请参考以下文章