12.幸运抽奖
Posted 许先
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了12.幸运抽奖相关的知识,希望对你有一定的参考价值。
import java.util.Scanner; /* * 幸运抽奖:会员号的百位数与系统随机数相同,即为中奖 * */ public class GoodLuck { public static void main(String[] args) { //随机产生一个0-9之间的任意整数 int random=(int)(Math.random()*10); // System.out.println(random); //从控制台接收一个任意的四位数 System.out.println("我行我素购物管理系统->幸运抽奖\n"); System.out.print("请输入4位会员号:"); Scanner input=new Scanner(System.in); int custNo=input.nextInt(); //获得会员号的百位数 int baiwei=custNo/100%10; if(baiwei==random){ System.out.println(custNo+"是幸运客户,获得精美MP3一个。"); }else{ System.out.println(custNo+" 谢谢您的支持!"); } } }
以上是关于12.幸运抽奖的主要内容,如果未能解决你的问题,请参考以下文章