本文主要是介绍打印菱形--只用两个print语句,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
*
***
*****
***
*
public class Test {
public static void main(String[] args) {
int n = 2; //除去中间的对称线,剩余的对称的有几行;
for (int i=-n;i<=n;i++){
for(int j=1;j<=Math.abs(i);j++){
System.out.print(" ");
}
for(int j=1;j<=2*(Math.abs(n)-Math.abs(i))+1;j++){
System.out.print("*");
}
System.out.println();
}
}
}
这篇关于打印菱形--只用两个print语句的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!