码迷,mamicode.com
首页 > 其他好文 > 详细

动手动脑问题

时间:2017-10-12 20:26:01      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:对象   scan   new   img   手动   splay   imp   method   http   

1.生成指定数目随机整数

 程序设计思想:

   使用Scanner对象接收用户输入的整数n(表示生成随机数的数目),然后循环执行n次 调用Math.random()*10000 % 10001生成0 - 10000范围内随机数,转换为整型并输出。

 程序代码:

 1 import java.util.Scanner;
 2 
 3 public class Rand {
 4     public static void main(String[] args) {
 5         Scanner in = new Scanner(System.in);
 6         int n = in.nextInt();
 7         for(int i = 0;i < n;i++)
 8             System.out.println((int)(Math.random()*10000) % 10001);
 9     }
10 }

 执行结果:

技术分享

 

2.方法重载


样例代码:

 1 //方法重载
 2 public class MethodOverload {
 3 
 4     public static void main(String[] args) {
 5         System.out.println("The square of integer 7 is " + square(7));
 6         System.out.println("\nThe square of double 7.5 is " + square(7.5));
 7     }
 8     
 9     public static int square(int x){
10         return x * x;
11     }
12     
13     public static double square(double y){
14         return y * y;
15     }
16 }

执行结果:

技术分享

结果分析:

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

  程序中7是int型,square(7)调用的是int square(int),得到int型结果

  程序中7.5是double型,square(7.5)调用的是double square(double),从而得到double型结果

 

动手动脑问题

标签:对象   scan   new   img   手动   splay   imp   method   http   

原文地址:http://www.cnblogs.com/lzq666/p/7657505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!