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

HW6.13

时间:2016-08-25 23:19:11      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

 1 import java.util.Scanner;
 2 
 3 public class Solution
 4 {
 5     public static void main(String[] args)
 6     {
 7         Scanner input = new Scanner(System.in);
 8         System.out.print("Enter the number you do not want to get: ");
 9         int number = input.nextInt();
10 
11         input.close();
12 
13         System.out.println("The number we get is: " + getRandom(number));
14     }
15 
16     public static int getRandom(int number)
17     {
18         int returnValue;
19         while(true)
20         {
21             returnValue = (int)(Math.random() * 54 + 1);
22             if(returnValue != number)
23                 break;
24         }
25         return returnValue;
26     }
27 }

 

HW6.13

标签:

原文地址:http://www.cnblogs.com/wood-python/p/5808479.html

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