码迷,mamicode.com
首页 > 其他好文 > 详细

实验报告三

时间:2019-09-26 18:39:32      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:应用   要求   报告   帮助文档   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!