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