黑马程序员技术交流社区

标题: 新人报道,加上这两天学习写的菱形代码,献丑了。 [打印本页]

作者: 敲敲乐z    时间: 2016-7-27 00:27
标题: 新人报道,加上这两天学习写的菱形代码,献丑了。
新人,请大家多多关照!
import java.util.Scanner;
class dd {
        public static void main(String[] args) {
                Scanner sc = new Scanner(System.in);
                System.out.print("输入一个1~40的整数:");
                int num = sc.nextInt();
                print(num);                                                                               
                print1(num);                                                                       
        }
        public static void print(int a) {                                       
                for (int i =1;i <= a ;i++ ) {                                       
                        for (int j = 1;j <= 2*i-1 ;j++ ) {                       
                                if (j == 1) {                                                       
                                        for (int m = 1;m <= a-i ;m++ ) {       
                                                System.out.print(" ");
                                        }
                                }
                                System.out.print("*");
                        }
                        System.out.println();
                }       

        }
        public static void print1(int b) {
                        for (int x = b-1;x >= 1 ;x-- ) {
                        for (int y = 1;y <= 2*x-1 ;y++ ) {
                                if (y == 1) {
                                        for (int n = 0;n <= b-1-x ;n++ ) {
                                                System.out.print(" ");
                                        }
                                }
                                System.out.print("*");
                        }
                        System.out.println();
                }
        }
}


作者: tanrenwei    时间: 2016-7-27 08:09
2016年7月27日08:07:49
作者: huangsong1002    时间: 2016-7-27 18:11
可以的,兄弟,加油,一起考上就业班
作者: 肥猫外传    时间: 2016-7-27 22:05
赞一个,写的不错




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2