求助:关于int型转ascll码型的问题
import java.util.Random;
class Sheng
{
void Shengcheng()
{
char[] a = new char[10];
Random shu= new Random();
for (int i = 0; i < 10; i++)
{
int b=shu.nextInt((26)+'A'); // 还有这句为什么不用%10结果就是15~80之间的数?
//Math.abs(shu.nextInt()%10);
//a[i] = shu*26+'A';
System.out.println("生成的第" + i + "随机数是"+b);
}
}
}
public class AboutRandom
{
public static void main(String[] args)
{
Sheng obj=new Sheng();
obj.Shengcheng();
}
}