class upsidedown {
public static void main(String args[]) {
int x, y;
for (y = 1; y <= 5; y++) {
for (x = 0; x < 5 - y; x++) {
System.out.print(' ');
}
for (x = (2 - y); x < (2 - y) + (2 * y - 1); x++) {
System.out.print('*');
}
System.out.print('\n');
}
}
}
到目前为止,我的代码打印出一个常规的右侧三角形。如何将其颠倒过来?
答案 0 :(得分:1)
很容易。使用相同的逻辑,只需颠倒打印行的顺序。
public class UpsideDown {
public static void main(String args[]) {
int x, y;
for (y = 5; y >= 1; y--) { //reverse here
for (x = 0; x < 5 - y; x++)
System.out.print(' ');
for (x = (2 - y); x < (2 - y) + (2 * y - 1); x++)
System.out.print('*');
System.out.print('\n');
}
}
}
另外,请关注java naming conventions。