三角形

Posted stevenx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三角形相关的知识,希望对你有一定的参考价值。

等腰三角形:

package com.steven.demo;

/**
 * 打印 5行的三角形
 */
public class SquareDemo {
    public static void main(String[] args) {

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

            System.out.println();
        }
    }
}

直角三角形:

package com.steven.demo;

/**
 * 打印 5行的三角形
 */
public class SquareDemo {
    public static void main(String[] args) {

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

            System.out.println();
        }
    }
}

 

以上是关于三角形的主要内容,如果未能解决你的问题,请参考以下文章

片段着色器不会在 OpenGL GLSL 中创建像光一样的渐变

Cg入门16:Fragment shader - 片段级光照

为啥片段着色器没有附加?

openGL 纹理05

未触发opengl片段着色器条件语句

初识OpenGL (-)纹理(Texture)