CoreJava

code_zone
随笔 - 1, 文章 - 2, 评论 - 0, 引用 - 0
数据加载中……

抽奖的实现

import java.util.Random;

public class Control {
    
private int num = 4;
    
private String str = "";
    
public static void main(String[] args) {
        Control c 
= new Control();
        isWin(c.productRandom());
    }
    
    
public  String productRandom(){
        Random d 
= new Random();
        
for(int i=0;i<num;i++){
            String s 
= d.nextInt(2)+"";
            str 
= randomSelection(s)+str;
        }
        System.out.println(
"您抽到的数字是:"+str);
        
return str;
    }
    
public static String randomSelection(String str){
        
if(str.equals("1")){
            
return "";
        }
else{
            
return "";
        }
    }
    
    
public static void isWin(String str){
        
if(str.equals("★★★★")){
            System.out.println(
"恭喜您!中了一等奖!!!");
        }
else if(str.equals("★★★☆")){
            System.out.println(
"恭喜您,中了二等奖!!!");
        }
else if(str.equals("★★☆☆")){
            System.out.println(
"恭喜您,中了三等奖!!!");
        }
else{
            System.out.println(
"不要灰心,希望下次中奖!!!");
        }
    }
}

posted on 2011-06-03 15:10 葛方帅 阅读(45) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航: