本月博客排行
-
第1名
wy_19921005 -
第2名
mft8899 -
第3名
java-007 - benladeng5225
- Anmin
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
benladeng5225 - wy_19921005
- vipbooks
- kaizi1992
- 青否云后端云
- e_e
- tanling8334
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- wallimn
- lemonhandsome
- ganxueyun
- jh108020
- Xeden
- xyuma
- wangchen.ily
- zhanjia
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- xpenxpen
- 喧嚣求静
- kingwell.leng
- lchb139128
- kristy_yy
- jveqi
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- silverend
- chenqisdfx
- xiaoxinye
- flashsing123
- bosschen
- lyndon.lin
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
最新文章列表
菱形
public static void printRhombus(int rows){ System.out.println("打印菱形"); //定义一个变量存储高 int height=rows; for(int i=0;i<height;i++){ if(i<height/2+1){ //这里加1表示会打印中间行 //控制打印的行 ...
打印菱形
//打印棱形rhombus public static void printRhombus(int height){ int top=height/2+1;//先计算出上部分的行数 for(int x=1;x<=top;x++){ //上部分的高每循环一次少打印一个空格;等于高减掉循环次数 for(int i=1; i<=top-x;i++){ System.ou ...
java 打印金字塔和菱形
注释:关键是要找出星星与空格和行数之间的关系,这里就不多说了,纯属数学问题啦,直接上代码。
import java.util.Scanner;
public class PrintDiamond {
/**
* @param args
* @since 1.0 08/23/11
*/
public static void main(String[] arg ...