编写java程序找出两个字符串中所有公共的字符;
时间: 2024-03-20 15:43:03 浏览: 95
java实现求两个字符串最长公共子串的方法
5星 · 资源好评率100%
好的,以下是找出两个字符串中所有公共的字符的Java程序:
```java
public class Main {
public static void main(String[] args) {
String str1 = "hello";
String str2 = "world";
for (int i = 0; i < str1.length(); i++) {
char ch = str1.charAt(i);
if (str2.indexOf(ch) != -1) {
System.out.print(ch + " ");
}
}
}
}
```
程序中使用了两个字符串"hello"和"world"作为示例,可以根据需要替换成其他字符串。使用for循环遍历第一个字符串中的每个字符,然后使用indexOf方法在第二个字符串中查找该字符,如果找到则输出该字符。最后输出所有公共字符。
阅读全文