如何在其他编程语言中创建倒三角?
时间: 2024-10-15 13:09:30 浏览: 10
输出正三角、倒三角
在其他编程语言中创建倒三角,基本原理相似。这里以JavaScript为例:
```javascript
for(let i = 0; i < 5; i++) {
let spaces = " ".repeat(5 - i);
let stars = "*".repeat(i * 2 + 1);
console.log(spaces + stars);
}
```
在Java中:
```java
for(int i = 0; i < 5; i++) {
for(int j = 0; j <= i; j++) {
System.out.print(" ");
}
for(int j = 0; j < 2*i + 1; j++) {
System.out.print("*");
}
System.out.println();
}
```
在C#中:
```csharp
for(int i = 0; i < 5; i++)
{
string spaces = new string(' ', 5 - i);
string stars = new string('*', 2 * i + 1);
Console.WriteLine(spaces + stars);
}
```
以上代码都是通过内外层循环分别控制空格和星号的数量,然后逐行打印。每种语言都有其特定的字符串操作函数或方法,如Python的字符串连接操作、JavaScript的`.repeat()`方法等。
阅读全文