怎么输出字符串数组的
时间: 2023-10-11 10:13:02 浏览: 102
C#将字符串数组传递给C++ DLL.rar
在大部分编程语言中,输出字符串数组可以通过循环遍历数组,依次输出每个字符串。以下是一些语言的示例代码:
在 Python 中,可以这样输出字符串数组:
```python
arr = ["hello", "world", "python"]
for s in arr:
print(s)
```
在 Java 中,可以这样输出字符串数组:
```java
String[] arr = {"hello", "world", "java"};
for (String s : arr) {
System.out.println(s);
}
```
在 C++ 中,可以这样输出字符串数组:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string arr[] = {"hello", "world", "cpp"};
for (string s : arr) {
cout << s << endl;
}
return 0;
}
```
在 JavaScript 中,可以这样输出字符串数组:
```javascript
let arr = ["hello", "world", "javascript"];
for (let s of arr) {
console.log(s);
}
```
希望这些示例代码能够帮助你理解如何输出字符串数组。
阅读全文