实验三 String类的应用
实验目的
掌握类String类的使用;
学会使用JDK帮助文档;
实验内容
1.已知字符串:"this is a test of java".按要求执行以下操作:(要求源代码、结果截图。)
统计该字符串中字母s出现的次数。
统计该字符串中子串“is”出现的次数。
统计该字符串中单词“is”出现的次数。
实现该字符串的倒序输出。
实验代码:
package h1;
public class test {
public static void main(String[] args) {
String str = "this is a test of java";
int i = 0;
int c1 = 0;
for(i = 0;i < str.length();i++) { //利用for循环统计字符串总长度
char a = str.charAt(i);
if(a == 's') {
c1++;
}
}
System.out.println("s出现的次数为:" +c1);
int b = str.indexOf("is");
System.out.println("子串is出现的次数为:"+b); //indexOf方法,课堂所讲
int e = (str.split(" is ")).length-1;
System.out.println("单词is出现的次数为:"+e); //split函数
StringBuffer r = new StringBuffer ("this is a test of java");
System.out.println("倒序输出:"+r.reverse()); //reverse,将字符串序列用反转形式取代
}
}
实验结果:
后三问利用上课所学更为简洁易懂。
2.请编写一个程序,使用下述算法加密或解密用户输入的英文字串。要求源代码、结果截图。
实验代码:
package h1;
import java.util.Scanner;
public class jm {
public static void main(String[] args) {
System.out.println("输入英文字符串:");
Scanner sc=new Scanner(System.in); //对象实例化,键盘输入字符串
String str=sc.next();//读取字符串
char a[]= str.toCharArray();//字符串转换为字符数组
System.out.println("加密后结果:");
for(char x:a) {
System.out.print((char)(x+3));//ASCII值加3后输出
}
}
}
实验结果:
3.已知字符串“ddejidsEFALDFfnef2357 3ed”。输出字符串里的大写字母数,小写英文字母数,非英文字母数。
实验代码:
package h1;
public class sc {
public static void main(String[] args) {
String str="ddejidsEFALDFfnef2357 3ed";
char a[]=str.toCharArray();//字符串转换为字符数组a[]
int x=0,y=0,z=0;
for(int i=0;i<a.length;i++){//用i记录字符串总长度
if(a[i]>='A'&&a[i]<='Z'){
x++;//计算大写字母数量
}
else if(a[i]>='a'&&a[i]<='z'){
y++;//计算小写字母数量
}
else {
z++;//计算除开英文字母其他内容数量
}
}
System.out.println("大写字母数:"+x);
System.out.println("小写字母数:"+y);
System.out.println("非英文字母数:"+z);
}
}