我正在尝试做一个像这样的金字塔:
a
bc
def
ghij
klmno
但它给了我错误:Char cannot be dereferenced
我有一个非常简单的代码:
public class PiramideLetras {
public static void main (String args[]) {
char cha = 'A';
for (int i=0;i<5;i++){
for(int y=i;y>=0;y--){
System.out.print(cha);
int b = cha.getNumericValue();
}
System.out.println("");}
}
}
为什么我会收到此错误?