🔒 Closed Patulong naman po kung anong kulang sa code c++

Status
Not open for further replies.

Social12

Fanatic
ito po yung problem:
Write a program to display the output below: You may input number of rows and colums.
Sample Output if Applicable


*
* * *
* * * * *
* * * * * * *
* * * * * * * * *
* * * * * * * * * * *

ito po yung code ko:

#include <stdio.h>


int main()
{
int rows, i, j, space;

printf("Input number of rows:");
scanf("%d",&rows);
for(i = 1; i <= rows; i++)
{
for(space = i; space < rows; space++)
{
printf("");
}
for(j = 1; j <= (2 * i - 1); j++)
{
printf("*",);
}

printf("\n");
}

return 0;
}

Ang out put po ng code ko is Half lang di po sya full na pyramid ano po kaya kulang?
 
ay maam mali po pala yung sample out put na nalagay ko ito po pala yung sample output dapat
*
* * *
* * * * *
* * * * * * *
* * * * * * * * *
* * * * * * * * * * *
 
[XX='Social12, c: 299083, m: 1093495'][/XX] pyramid po sya maam hindi po sya half lang, di sya nagiging pyramid pag na i comment po kasi
 
Status
Not open for further replies.

About this Thread

  • 7
    Replies
  • 485
    Views
  • 4
    Participants
Last reply from:
homer_simpson

Trending Topics

Online now

Members online
1,030
Guests online
3,475
Total visitors
4,505

Forum statistics

Threads
2,331,782
Posts
29,260,331
Members
1,147,815
Latest member
groudon
Back
Top