2024-04-19 00:59:38
编写从键盘输入一个
import java.util.Scanner
public class a
public static void main(String[] args)
Scanner sc=new Scanner(System.in)
String[] str= new String[5]
System.out.println("请从控制台输入5个字符串,按回车确认!")
for(int i=0;i<5;i++)
str[i]=sc.nextLine()
for(int j=4;j>=0;j--)
System.out.println(str[j])
通常以串的整体作为操作对象
如:在串中查找某个子串、求取一个子串、在串的某个位置上插入一个子串以及删除一个子串等。两个字符串相等的