Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Bucles: Triangulo asteriscos izquierdo
//Title of this code //clang 3.6.0 /* ******** ******* ****** ***** *** ** * */ #include <stdio.h> int main(void) { int i, j, k, n=11; printf("Pinta Triángulo lateral izquierdo de asteriscos\n\n\n"); for (i=0; i<n; i++) { for (j=0; j<n-i; j++) printf("*"); printf("\n"); } return 0; }
run
|
edit
|
history
|
help
0
Bucles: Múltiplos de 4 hasta N tecleado por el usuario
Find the length of largest subarray with equal number of 0's and 1's using recursion
Graph Depth First Search
char xor
Triángulo Asteriscos
Herout (67) - 15
Bucles: Media 10 positivos y negativos tecleados
Triples bucles anidados
Bucles: Triángulos Lateral Derecho
Bucles: Suma de los 100 primeros naturales