发布网友 发布时间:2022-04-22 23:15
共5个回答
热心网友 时间:2023-10-08 17:38
有:
0代替o、O
1代替I、i、L、l
3代替E,e、ε
4代替A
5代替s、S
6代替b
8代替B
9代替g
用法
数字转字母:
public static void main(String[] args) {
Integer num = 26;
String up = (char) (num + 64) + ""; //转为大写字母Z
String low = (char) (num + 96) + ""; //转为小写字母z
System.out.println(up);
System.out.println(low);
}
字母转数字:
public static void main(String[] args) {
String up = "B";
String low = "b";
Integer aa = up.getBytes()[0] - 64; //大写转数字
Integer bb = low.getBytes()[0] - 96; //小写转数字
System.out.println(aa); //结果为2
System.out.println(bb); //结果为2
}
热心网友 时间:2023-10-08 17:39
q=9 a=4热心网友 时间:2023-10-08 17:39
E=3 S=5 O=0 I=1 T=7 B=8 我想知道R可以用什么代替呢!热心网友 时间:2023-10-08 17:40
q w e r t y u i o p a s d f g h j k l z x c v b n m热心网友 时间:2023-10-08 17:40
z=2