标签:应用 要求 报告 帮助文档 package static length equals com
实验三 String类的应用
实验目的
.掌握类String类的使用;
.学会使用JDK帮助文档;
.实验内容
一.已知字符串:"this is a test of java".按要求执行以下操作:(要求源代码、结果截图。)
Test1
--代码
package demo1;
public class Test1 {
public static void main(String[] args) {
String s = "this is a test of java";
int count=0;
for(int i=0;i<s.length();i++) {
char c=s.charAt(i);
if(c=='s') {
count++;
}
}
System.out.println("s出现次数" +count);
}
}
--结果截图
Test2
代码
package demo1;
public class Test2 {
public static void main(String[] args) {
String s = "this is a test of java";
int count= 0;
for(int i=1;i<s.length();i++) {
char c=s.charAt(i-1);
char c1=s.charAt(i);
if(c=='i'&&c1=='s') {
count++;
}
}
System.out.println("字符串中子串is出现的次数" +count);
}
}
--结果截图
Test3
--代码
package demo1;
public class Test3 {
public static void main(String[] args) {
String str = "this is a test of java";
String s[] =str.split(" ");
int count= 0;
for(int i=0;i<s.length;i++) {
if(s[i].equals("is")) {
count++;
}
}
System.out.println("单词is出现次数" +count);
}
}
--结果截图
Test4
--代码
package demo1;
public class Test4 {
public static void main(String[] args) {
String s = "this is a test of java";
char str[] = s.toCharArray();
for (int i=str.length-1;i>=0;i--) {
System.out.print(str[i]);
}
}
}
--结果截图
标签:应用 要求 报告 帮助文档 package static length equals com
原文地址:https://www.cnblogs.com/zuoshuai/p/11593586.html