码迷,mamicode.com
首页 > 其他好文 > 详细

打印菱形

时间:2015-05-21 09:13:29      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

题目描述

给出菱形的边长,在控制台上打印出一个菱形来。
为了便于比对空格,我们把空格用句点代替。
当边长为8时,菱形为:

.......*
......*.*
.....*...*
....*.....*
...*.......*
..*.........*
.*...........*
*.............*
.*...........*
..*.........*
...*.......*
....*.....*
.....*...*
......*.*
.......*

下面的程序实现了这个功能,但想法有点奇怪。
请仔细分析代码,并填写划线部分缺失的代码。


public class A
{
    public static void f(int n)
    {
        String s = "*";
        for(int i=0; i<2*n-3; i++) s += ".";
        s += "*";

        String s1 = s + "\n";
        String s2 = "";

        for(int i=0; i<n-1; i++){
            //System.out.println("=>"+s);
            s = "." + _____________________________________ + "*";  //填空
            s1 = s + "\n" + s1;
            s2 += s + "\n";
        }
        System.out.println(s1+s2);      
    }

    public static void main(String[] args)
    {
        f(8);
    }
}

答案:s.substring(0, 2 * (n-2)-i)

打印菱形

标签:

原文地址:http://blog.csdn.net/tule_ant/article/details/45876641

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!