What's new

Help How to put ascii code outer loop in c program

Phantom Rhythm

Honorary Poster
Di ko po alam paano maglagay ng ascii code kahit anong symbol for design sana, dun sa outer loop. salamat

#include <stdio.h>
int main()
{
int j, k, L;

printf("Enter number of rows: ");
scanf("%d", &L);

for(j=1; j<=L; j++)
{
for (k=1; k<=L; k++)
{
if(j==1 || j==L || k==1 || k==L)
{
printf("*");
}
else
{
printf(" ");
}
}
printf("\n");
}
return 0;
}
 
Solution
Example: ASCII value of integer 61 is character =

check mo naka highlight na yellow, sample conversion lang yan ng ascii number to character, ikaw na bahala kung saan mo ilalagay sa code mo..

1631728407579.png


1631728471140.png
Example: ASCII value of integer 61 is character =

check mo naka highlight na yellow, sample conversion lang yan ng ascii number to character, ikaw na bahala kung saan mo ilalagay sa code mo..

1631728407579.png


1631728471140.png
 

Attachments

Solution

Similar threads

Back
Top