加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

第五周课程总结&试验报告(三)

发布时间:2020-12-15 07:34:03 所属栏目:Java 来源:网络整理
导读:实验内容 1.已知字符串:"this is a test of java".按要求执行以下操作:(要求源代码、结果截图。) 1.统计该字符串中字母s出现的次数。 代码: package test;public class test { public static void main(String [] args){ int sum = 0; String str = "th

实验内容

1.已知字符串:"this is a test of java".按要求执行以下操作:(要求源代码、结果截图。)
1.统计该字符串中字母s出现的次数。

代码:

package test;
public class test {    
    public static void main(String [] args){ 
        int sum = 0;
        String str = "this is test of java";
        char c[] = str.toCharArray();
        for(int i = 0;i<c.length;i++) {
            if(c[i] == 's') {
                sum++;
            }
        }
        System.out.println(sum);
    }
}
2.统计该字符串中子串“is”出现的次数。

代码:

package test;
public class test {    
    public static void main(String [] args){ 
        int sum = 0;
        String str = "this is test of java";
        char c[] = str.toCharArray();
        for(int i = 0;i<c.length;i++) {
            if(c[i] == 'i'&&c[i+1] == 's') {
                sum++;
            }
        }
        System.out.println(sum);
    }
}
3.统计该字符串中单词“is”出现的次数。

代码:

package test;
public class test {    
    public static void main(String [] args){ 
        int sum = 0;
        String str = "this is test of java";
        char c[] = str.toCharArray();
        for(int i = 0;i<c.length;i++) {
            if(c[i] == ' '&&c[i+1] == 'i') {
                sum++;
            }
        }
        System.out.println(sum);
    }
}
4.实现该字符串的倒序输出。

代码:

package test;

public class ban {
    public static void main(String[] args) {
        String str = "this is test of java";
        
        for (int j = str.length()-1; j>=0; j--) {
            char a = str.charAt(j);
            System.out.print(a);
       }
    
    }
}

2.请编写一个程序,使用下述算法加密或解密用户输入的英文字串。要求源代码、结果截图。

3.已知字符串“ddejidsEFALDFfnef2357 3ed”。输出字符串里的大写字母数,小写英文字母数,非英文字母数。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读