Java基础(正式上课第二天)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java基础(正式上课第二天)相关的知识,希望对你有一定的参考价值。
double d=Math.random()//随机产生[0-1)
输入一个四位数 百位与随机产生数字相同中奖
Scanner s=new Scanner(System.in);
int a=s.nextInt();
int d1=(int)Math.random()*10;
if(a/100%10==d1)
Ststem.out.println("中奖");
字符串比较 .equals()方法 基本数据 ==
以上是关于Java基础(正式上课第二天)的主要内容,如果未能解决你的问题,请参考以下文章