Computer Science, asked by amandeep347kaur, 6 months ago

write coding for
*****
****
***
**
*​

Answers

Answered by Anonymous
1

Answer:

Computer programming is the process of designing and building an executable computer program to accomplish a specific computing result or to perform a specific task.

Answered by xbadree
0

Answer:

python

for i in range(5, 0, -1):

 print("*" * i)

c-lang

#include <stdio.h>

int main(void) {

 for (int i = 5; i > 0; i--) {

   for (int j = 0; j < i; j++) {

     printf("*");

   }

   printf("\n");

 }

 return 0;

}

Explanation:

Similar questions