当前位置: 代码迷 >> J2SE >> 用math.abs打印菱形!
  详细解决方案

用math.abs打印菱形!

热度:105   发布时间:2016-04-24 17:50:44.0
用math.abs打印菱形!!请指教
用math.abs打印菱形

------解决方案--------------------
打印菱形?啥意思,楼主说明白点。是不是画一个菱形啊?
------解决方案--------------------
public class Untitled1
{
public static void main(String args[])
{
int line = Integer.parseInt(args[0]);
int n = -line;
do {
show(Math.abs(n), ' ');
show((line-Math.abs(n))*2+1, '* ');
System.out.println();
n++;
}while (n <=line);
}
public static void show(int i,char c)
{
for (int n = 0;n <i;n++)
{
System.out.print(c);
}
}
}
  相关解决方案