What's new

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

Status
Not open for further replies.

Social12

Honorary Poster
Joined
Feb 26, 2018
Posts
322
Reaction
22
Points
188
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?
 
1.PNG
 

Attachments

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.

Similar threads

Back
Top