博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
20130330java基础学习笔记-语句_for循环嵌套练习2
阅读量:5290 次
发布时间:2019-06-14

本文共 585 字,大约阅读时间需要 1 分钟。

class ForForTest

{
    public static void main(String[] args)
    {
        /*用for循环做出以下图:
        * * * * *
         * * * *
          * * *
           * *
            *
        */
        for(int x=1; x<=5; x++)
        {
            for(int y=1; y<x; y++)
            {
                System.out.print(" ");
            }
            for(int z=x; z<=5; z++)
            {
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

 

//方法二:

public class Test2

{
    public static void main(String[] args)
    {
        String s = "";
        String x ="";
        for (int i = 5; i > 0; i--)
        {
            x ="";
            System.out.print(s);
            for (int j = 0; j < i; j++)
            {
                x += "* ";
            }
            s += " ";
            System.out.print(x);
            System.out.println();
        }
    }
}

转载于:https://www.cnblogs.com/lisu/archive/2013/03/30/2990693.html

你可能感兴趣的文章
ANGULARJS5从0开始(2) - 整合bootstrap和font-awesome
查看>>
Android 使用Parcelable序列化对象
查看>>
Python Web框架Django (零)
查看>>
Foxmail出现 错误信息:553 mailbox not found怎么解决
查看>>
spring_远程调用
查看>>
js 中基本数据类型和引用数据类型 ,,,, js中对象和函数的关系
查看>>
登录服务器,首先用到的5个命令
查看>>
多米诺骨牌
查看>>
区间DP 等腰三角形
查看>>
mysql 存储引擎对索引的支持
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
【转】iOS 宏(define)与常量(const)的正确使用-- 不错
查看>>
【转】iOS开发UI篇—iPad和iPhone开发的比较
查看>>
【转】Android底层库和程序
查看>>
OnContextMenu事件(转)
查看>>
Comparación para 2019 Nueva Lonsdor K518S y K518ISE
查看>>
论文笔记——MobileNets(Efficient Convolutional Neural Networks for Mobile Vision Applications)
查看>>
从今天开始
查看>>
Attribute(特性)与AOP
查看>>