美文网首页
For循环打印三角形及输出某年某月天数

For循环打印三角形及输出某年某月天数

作者: soilwear | 来源:发表于2018-08-23 21:26 被阅读0次

打印三角形



import java.util.Scanner;

public class Class01 {

    public static void main(String[] args) {

        demo1();
        // 打印等腰三角形
        demo2();
        // 打印反等腰三角形
        demo3();

        demo4();

        demo5();

        demo6();

        demo7();

    }

    // 菱形 未确定行数 (未完成)
    private static void demo7() {

        Scanner sc = new Scanner(System.in);
        System.out.println("输入行数");
        int n = sc.nextInt();

        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= n - i; j++) {
                System.out.print(" ");

            }

            for (int k = 1; k <= 2 * i - 1; k++) {
                System.out.print("*");

            }

            System.out.println();
        }

        /*
         * for (int i = (n - 1)/2-1; i >= 1; i--) {
         * 
         * for (int j = 0; j <= (n + 1)/2-1; j++) { System.out.print(" "); } for
         * (int k = 0; k < 2 * (n - i); k++) { System.out.print("*");
         * 
         * }
         * 
         * System.out.println(); }
         */
    }

    // 菱形 确定行数
    private static void demo6() {
        for (int i = 1; i <= 5; i--) {

            for (int j = 1; j <= 5 - i; j++) {
                System.out.print(" ");

            }

            for (int k = 1; k <= 2 * i - 1; k++) {

                System.out.print("*");

            }
            System.out.println();

        }
        for (int i = 4; i >= 0; i--) {

            for (int j = 1; j < 6 - i; j++) {
                System.out.print(" ");
            }
            for (int k = 1; k <= 2 * i - 1; k++) {

                System.out.print("*");

            }

            System.out.println();
        }

        // TODO Auto-generated method stub

    }

    // 不确定行数 反等腰三角形
    private static void demo5() {

        Scanner sc = new Scanner(System.in);
        System.out.println("反等腰三角形行数");

        int n = sc.nextInt();

        for (int i = 0; i <= n; i++) {

            for (int j = 0; j < i; j++) {

                System.out.print(" ");

            }

            for (int k = 0; k < 2 * (n - i) - 1; k++) {
                System.out.print("*");

            }
            System.out.println();
        }
        // TODO Auto-generated method stub

    }

    // 等腰三角形 不确定行数
    private static void demo4() {

        Scanner sc = new Scanner(System.in);
        System.out.println("输入行数");
        int n = sc.nextInt();

        for (int i = 1; i <= n; i++) {

            for (int j = 1; j <= n - i; j++) {
                System.out.print(" ");

            }
            for (int k = 1; k <= 2 * i - 1; k++) {
                System.out.print("*");

            }
            System.out.println();
        }

    }

    private static void demo3() {

        // TODO Auto-generated method stub

    }

    // 反等腰三角形
    private static void demo2() {
        System.out.println("--------------");
        for (int i = 6; i >= 0; i--) {

            for (int j = 1; j <= 6 - i; j++) {

                System.out.print(" ");

            }
            for (int k = 1; k <= 2 * i - 1; k++) {
                System.out.print("*");
            }
            System.out.println();
        }

    }

    // 等腰三角形
    private static void demo1() {
        for (int i = 1; i <= 5; i++) {

            for (int j = 4 - i; j >= 0; j--) {
                System.out.print(" ");

            }
            for (int k = 1; k <= 2 * i - 1; k++) {

                System.out.print("*");

            }
            System.out.println();
        }

    }

}




判断某年某月天数



import java.util.Scanner;

public class Test2 {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);
        System.out.println("亲输入年份");
        int year = sc.nextInt();
        System.out.println("输入月份");

        int month = sc.nextInt();
        if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
            if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) {
                int day = 31;
                System.out.println("本月有:" + day + "天");

                System.out.println("日     一    二     三     四    五     六");

                for (day = 1; day <= 3; day++) {
                    System.out.print("   ");
                }

                for (day = 1; day <= 31; day++) {

                    if (day % 7 == 4) {
                        System.out.println(day + "  ");
                    } else {
                        if (day < 10) {
                            System.out.print(day + "  ");

                        }

                        else {
                            System.out.print(day + " ");
                        }

                    }
                }

            } else if (month == 4 || month == 6 || month == 9 || month == 11) {
                int day = 30;
                System.out.println("本月有:" + day + "天");
                System.out.println("日     一    二     三     四    五     六");

                for (day = 1; day <= 3; day++) {
                    System.out.print("   ");
                }

                for (day = 1; day <= 30; day++) {

                    if (day % 7 == 4) {
                        System.out.println(day + "  ");
                    } else {
                        if (day < 10) {
                            System.out.print(day + "  ");

                        }

                        else {
                            System.out.print(day + " ");
                        }

                    }
                }
            } else {
                int day = 29;
                System.out.println("本月有:" + day + "天");
                System.out.println("日     一    二     三     四    五     六");

                for (day = 1; day <= 3; day++) {
                    System.out.print("   ");
                }

                for (day = 1; day <= 29; day++) {

                    if (day % 7 == 4) {
                        System.out.println(day + "  ");
                    } else {
                        if (day < 10) {
                            System.out.print(day + "  ");

                        }

                        else {
                            System.out.print(day + " ");
                        }

                    }
                }
            }
        } else {
            if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) {

                int day = 31;
                System.out.println("本月有:" + day + "天");
                System.out.println("日     一    二     三     四    五     六");

                for (day = 1; day <= 3; day++) {
                    System.out.print("   ");
                }

                for (day = 1; day <= 31; day++) {

                    if (day % 7 == 4) {
                        System.out.println(day + "  ");
                    } else {
                        if (day < 10) {
                            System.out.print(day + "  ");

                        }

                        else {
                            System.out.print(day + " ");
                        }

                    }
                }

            } else if (month == 4 || month == 6 || month == 9 || month == 11) {
                int day = 30;
                System.out.println("本月有:" + day + "天");
                System.out.println("日     一    二     三     四    五     六");

                for (day = 1; day <= 3; day++) {
                    System.out.print("   ");
                }

                for (day = 1; day <= 30; day++) {

                    if (day % 7 == 4) {
                        System.out.println(day + "  ");
                    } else {
                        if (day < 10) {
                            System.out.print(day + "  ");

                        }

                        else {
                            System.out.print(day + " ");
                        }

                    }
                }
            } else {
                int day = 28;
                System.out.println("本月有:" + day + "天");
                System.out.println("日     一    二     三     四    五     六");

                for (day = 1; day <= 3; day++) {
                    System.out.print("   ");
                }

                for (day = 1; day <= 28; day++) {

                    if (day % 7 == 4) {
                        System.out.println(day + "  ");
                    } else {
                        if (day < 10) {
                            System.out.print(day + "  ");

                        }

                        else {
                            System.out.print(day + " ");
                        }

                    }
                }
            }

        }

    }

}

相关文章

  • For循环打印三角形及输出某年某月天数

    打印三角形 判断某年某月天数

  • [蓝桥杯]输出正反三角形

    问题 1571: [蓝桥杯][算法提高VIP]输出正反三角形 题目描述 使用循环结构打印下述图形,打印行数n由用户...

  • vi编辑器

    三角形的编程 打印输出

  • for语句实现输出空心三角形

    //该程序利用for循环输出正空心三角形/* 输出如下:** ** ** **********cl...

  • 第四章练习

    1.使用循环输出九九乘法表。 使用循环输出等腰三角形等腰三角形.png 给定奇数3 , 输出(横、坚、斜的总和相等...

  • 三角形的打印

    学习循环,比较难懂的双层循环,这个需要多练习,下面是几个打印三角形的demo: 左下半三角形document.wr...

  • Break Continue Return

    1.break 打印输出 当执行break时,会结束循环. 2.continue 打印输出 当执行continue...

  • python例题

    for循环、if 、乘方 、continue 、除法 输入输出、while循环 日期操作 批量打印 函数定义,递...

  • 【学习笔记】JavaScript基础 041-060

    041 嵌套 for循环 例:输出金字塔 代码 042-043 for循环练习 练习:打印九九乘法表 练习:打印1...

  • java算法之图形问题

    打印图形一般都是嵌套循环,外层循环控制显示行数,内层循环控制列数。 图形一:矩形 图形二:直角三角形 } 图形三:...

网友评论

      本文标题:For循环打印三角形及输出某年某月天数

      本文链接:https://www.haomeiwen.com/subject/eyxviftx.html