• Java第二课课后动手动脑


    1.生成随机数:

    设计思想:用户输入需要生成的随机数个数,然后定义循环体,执行n次System.out.println(1 + (int) ( Math.random() * 1000 ));语句。

    程序代码:

    import java.util.Scanner;
    public class ketang {

    public static void main(String[] args) {
    // TODO 自动生成的方法存根
    Scanner input = new Scanner(System.in);
    System.out.println("请输入需要生成的随机数个数:");
    int n = input.nextInt();
    for(int i = 0;i < n;i++)
    {
    System.out.println(1 + (int) ( Math.random() * 1000 ));
    }
    }

    }

    运行结果:

    2.方法重载:

    程序运行结果分析:

    程序对square方法进行了重载。程序调用square函数时,根据传递参数的类型不同,调用与其参数类型一致的函数。

    第一个语句的参数是int型,调用的是int square(int x),因此得到int型结果。

    第二个语句的参数是double型,调用的是double square(double y),因此得到double型结果。

    3.查看System.out.println()方法,你发现了什么?

    System类中的out(引用)err(引用),in(引用)都被初始化为空指针。而PrintStream类中的println()方法为非静态方法!

  • 相关阅读:
    Index(4.3)
    第七次会议(4.22)
    第六次会议(4.15)
    第五次会议(4.8)
    第四次会议(4.2)
    第三次会议(3.25)
    第二次扩大会议(3.19)
    第二次会议(3.25)
    第一次会议(3.11)
    牛客练习赛25A求1-x因数和(离散求和)
  • 原文地址:https://www.cnblogs.com/mqlblog/p/7661191.html
Copyright © 2020-2023  润新知