`

用“*”输出三角形和正方形

J# 
阅读更多
public class DengYao { 
/** 
* 使用"*",输出等腰三角形 
* 
* @param args 
*/ 
public static void main(String[] args) { 
for (int i = 1; i <= 4; i++) { 
for (int j = 1; j <= 5 - i; j++) { 
System.out.print(" "); 
} 
for (int j = 1; j <= i * 2 - 1; j++) { 
System.out.print("*"); 
} 
System.out.println(); 
} 
} 
} 

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

public class Zheng { 
/** 
* 使用*打印出正方形 
*/ 
public static void main(String[] args) { 
for(int j=1;j<=4;j++){ 
for(int i=1;i<=5;i++){ 
System.out.print("*"); 
} 
System.out.println(); 
} 
} 
} 

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


public class SanJX2 { 
/** 
* 右直角三角形 
*/ 
public static void main(String[] args) { 
int x, y; 
for (x = 0; x <= 4; x++) { 
for (y = 0; y <= Math.abs(x); y++) { 
System.out.print("*"); 
} 
System.out.println(); 
} 
} 
} 

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

public class Ping { 
/** 
* 使用*打印平行四边形 
*/ 
public static void main(String[] args) { 
for(int j=1;j<=4;j++){ 
for(int i=0;i<j;i++){ 
System.out.print(" "); 
} 
for(int i=1;i<=5;i++){ 
System.out.print("*"); 
} 
System.out.println(); 
} 
} 
} 

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


public class Lx2 { 
/** 
* 倒直角三角形 
*/ 
public static void main(String[] args) { 
int x, y; 
for (x = 0; x <= 4; x++) { 
for (y = 0; y <= 4 - Math.abs(x); y++) { 
System.out.print("*"); 
} 
System.out.println(); 
} 
} 
} 

************************************************************
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics