欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

假設(shè)一個車牌號碼由三個字母和四個數(shù)字組成

洪振霞2年前17瀏覽0評論

假設(shè)一個車牌號碼由三個字母和四個數(shù)字組成?

public class Hello {

public static void main(String[] args) {

char c1 =(char)(int)(Math.random()*26+65);

char c2 =(char)(int)(Math.random()*26+65);

char c3 =(char)(int)(Math.random()*26+65);

int x1=(int)(Math.random()*10);

int x2=(int)(Math.random()*10);

int x3=(int)(Math.random()*10);

int x4=(int)(Math.random()*10);

System.out.print(c1);

System.out.print(c2);

System.out.print(c3);

System.out.print(x1);

System.out.print(x2);

System.out.print(x3);

System.out.print(x4);

}

}

java 隨機(jī)字符,假設(shè)一個車牌號碼由三個字母和四個數(shù)字組成