打印以图案: * * * * * * * * * * * * * * * * * * * * * * * * * 用string方法。
时间: 2024-05-12 09:12:20 浏览: 88
应该使用以下方法使用Python的字符串方法,打印出一个矩形星号图案:
```python
star = '* '
for i in range(5):
print(star * 5)
```
输出结果为:
```
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
```
相关问题
二维数组的图案:打印以下图案: * * * * * * * * * * * * * * * * * * * * * * * * *
这个图案可以用二维数组来实现,具体实现方式如下:
```
int rows = 5;
int cols = 5;
char arr[rows][cols];
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
arr[i][j] = '*';
}
}
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
cout << arr[i][j] << " ";
}
cout << endl;
}
```
用string方法打印以下图案: * * * * *
可以使用以下代码来打印该图案:
```
#include <iostream>
#include <string>
int main() {
std::string pattern = "* * * * *";
std::cout << pattern << std::endl;
return 0;
}
```
这个程序将字符串 `"* * * * *"` 赋给了一个名为 `pattern` 的字符串变量,并通过 `cout` 输出了该字符串。输出结果为:
```
* * * * *
```
阅读全文