博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java面试每日一题12
阅读量:6587 次
发布时间:2019-06-24

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

题目:打印出如下图案(菱形)

    *
   ***
 ******
********
 ******
  ***
   *

public class Diamond {    public static void main(String[] args){        System.out.println("实心菱形:");          int hangshu=5;         for(int i = 0; i < hangshu - 1; i++)             {                 for(int x = i + 1; x < hangshu; x++)                 {                     System.out.print("&");                 }                 for(int y = 0; y < (i + 1) * 2 - 1; y++)                 {                     System.out.print("*");                 }                 System.out.println();             }         for(int i=hangshu-3;i>=0;i--){             for(int x = i ; x < hangshu-1; x++)                 {                     System.out.print("&");                 }                 for(int y = 0; y < (i + 1) * 2 - 1; y++)                 {                     System.out.print("*");                 }                 System.out.println();          }    }}

 

转载于:https://www.cnblogs.com/tjlgdx/p/5961242.html

你可能感兴趣的文章
wps10.1中将txt转为excel
查看>>
[BZOJ3312][USACO]不找零(状压DP)
查看>>
gtp转换mbr
查看>>
poj1985 求树的直径
查看>>
适配器模式(数据库方面)支持不同的数据库连接
查看>>
CF456B Fedya and Maths 找规律
查看>>
转载:Beginning WF 4.0翻译——第三章(流程图工作流)
查看>>
芯片测试
查看>>
在源代码中插入防止盗版代码片段的方式
查看>>
ffserver联合ffmpeg建立媒体服务器
查看>>
微软URLRewriter.dll的url重写的简单使用(实现伪静态)
查看>>
leetcode -- Combination Sum II
查看>>
Navicat for MySQL 使用SSH方式链接远程数据库(二)
查看>>
poj 1274The Perfect Stall
查看>>
HDU 4720 Naive and Silly Muggles (外切圆心)
查看>>
scrapy爬虫框架实例一,爬取自己博客
查看>>
手把手教你通过Thrift 访问ApsaraDB for HBase
查看>>
Vue+webpack+Element 兼容问题总结
查看>>
复杂recyclerView封装库
查看>>
见微知著 —— Redis 字符串内部结构源码分析
查看>>