8.打印出如下图案 ******* ******* ******* ******* ******* ******* ******* 要求用双重循环语句实现。
时间: 2023-12-07 10:03:05 浏览: 87
采用双重循环打印输出图案.exe
以下是C语言实现打印图案的代码:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
int n = 8;
int i, j;
char ch = '*';
for (i = 1; i <= n; i++) {
for (j = 1; j <= n; j++) {
printf("%c", ch);
}
printf("\n");
}
return 0;
}
```
阅读全文