⑴ 用java實現生成一隨機字母(包括大小寫),並輸出
Randomr=newRandom();
Stringcode="";
for(inti=0;i<9;++i){
inttemp=r.nextInt(52);
charx=(char)(temp<26?temp+97:(temp%26)+65);
code+=x;
}
System.out.println("輸出抄隨襲機字母:"+code);
⑵ Java中怎樣產生隨機數和隨機字母
下邊是我原來回答過的隨機生成密碼的問題,里邊用到了隨機生成字母、數字和符號,主要是用ascii碼對應的關系 package demo;import java.util.Random;
import java.util.Scanner;public class Test_002
{
public static void main(String [] args){
Scanner sc = new Scanner(System.in);
System.out.println("請輸入密碼長度:");
int leng = sc.nextInt();
char [] pw = new char[leng];
Random rm = new Random();
for(int i = 0; i < leng; i++){
pw[i] = (char)(rm.nextInt(94)+33);
}
System.out.println(new String(pw));
}
} pw[i] = (char)(rm.nextInt(94)+33);這里的94是在ascii碼表中,我們常用的符號+數字+大小寫字母一共有94個(從33~126),rm.nextInt(94)可以隨機生成0~93之間的數,加33是因為我們需要的范圍是33~126,這樣我們就生成了22~126之間的隨機數,然後強轉成(char)就是我們要的符號、數字或者字母了
⑶ 在java中隨機輸出小寫的26個英文字母
public static void main(String[] args){
String str = "abcdefghijklmnopqrstuvwxyz";
String strNew = "";
char[] b = str.toCharArray();
for(int i=0;i<b.length;i++){
int index =(int) (Math.random()*b.length);
strNew += b[index];
System.out.println(b[index]);
}
System.out.println(strNew);
}