19.4k views
1 vote
Draw a fancy pattern

Write a program called xtreme.c that reads an (odd) integer n from standard input, and prints an nxn a square of asterisks and dashes in the following pattern:
n: 9
*---*---*
-*-----*-
--*---*--
---*-*---
*---*---*
---*-*---
--*---*--
-*-----*-
*---*---*

User Otwtm
by
7.4k points

1 Answer

6 votes

Final answer:

To draw a fancy pattern in C programming, use loops to print asterisks and dashes in a specific pattern determined by the user's input of an odd integer n.

Step-by-step explanation:

To draw a fancy pattern, you can write a program using loops to print asterisks and dashes in a specific pattern. Here is an example program in C:

#include <stdio.h>

int main() {
int n, i, j;
printf("Enter a value for n: ");
scanf("%d", &n);
for(i=1; i<=n; i++) {
for(j=1; j<=n; j++)
if(j==i
printf("\\");
}
return 0;
}

For example, if the input is 9, the program will output the following pattern:

*---*---*
-*-----*-
--*---*--
---*-*---
*---*---*
---*-*---
--*---*--
-*-----*-
*---*---*

User Nikagra
by
7.9k points