En este artículo, aprenderemos a imprimir el patrón de estrella del triángulo rectángulo.
Ejemplos:
Input : n = 5 Output: * * * * * * * * * * * * * * *
Patrón de estrella del triángulo recto:
Java
import java.io.*; // Java code to demonstrate right star triangle public class GeeksForGeeks { // Function to demonstrate printing pattern public static void StarRightTriangle(int n) { int a, b; // outer loop to handle number of rows // k in this case for (a = 0; a < n; a++) { // inner loop to handle number of columns // values changing acc. to outer loop for (b = 0; b <= a; b++) { // printing stars System.out.print("* "); } // end-line System.out.println(); } } // Driver Function public static void main(String args[]) { int k = 5; StarRightTriangle(k); } }
Producción
* * * * * * * * * * * * * * *
Complejidad de tiempo : O(n 2 ) donde n es entrada
Espacio auxiliar : O(1)
Publicación traducida automáticamente
Artículo escrito por ddeevviissaavviittaa y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA