Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int i,j,lines;
- printf("Entre com a quantidade de linhas :\n"); scanf("%d",&lines);
- for (i = 0; i < lines; i++)
- {
- for (j = 0; j <= i; j++)
- {
- printf("* ");
- }
- printf("\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment