- public class DiamondTest {
- public static void main(String[] args) {
- int m,n;
- for(m=0;m<=8;m++){
- for(n=0;n<=8;n++){
- if((m<=n+4)&&(m>=4-n)&&(m<=12-n)&&(m>=n-4)){
- System.out.print("*");
- }else{
- System.out.print(" ");
- }
- }
- System.out.println();
- }
- }
- }
复制代码
这是我们班一个同学写的,你看能看懂不,反正我没看懂,不管代码量上来说是很简单,看懂了也告诉我下 |