Computer Science, asked by anupkamath2006, 3 months ago

Write a program to print the pattern

# # # # #

# #

# #

# #

# # # # #

Answers

Answered by aradhyasingh7101
0

Answer:

#include <stdio.h>

int main() {

int i, j, rows;

printf("Enter the number of rows: ");

scanf("%d", &rows);

for (i = 1; i <= rows; ++i) {

for (j = 1; j <= i; ++j) {

printf("* ");

}

printf("\n");

}

return 0;

}

Answered by indiantechsmith
0

Answer:

a=0

for i in range(1,6):

a+=1

if(a==1 or a==5):

print("# "*5)

else:

print("# "*2)

Similar questions