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

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

时间:2019-09-27 19:30:20      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:模板   实验   实现   课程总结   string类   用户输入   int   形式   转换   

实验三 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);

    }

}

实验结果:

技术图片

总结:

1、super、this不可同时用,都得放首行,只可选其一使用。

2、final

final声明的类不能有子类

final声明的方法不能被子类所覆写

final声明的变量即成为常量,常量不能修改

3、抽象类类似于模板

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

标签:模板   实验   实现   课程总结   string类   用户输入   int   形式   转换   

原文地址:https://www.cnblogs.com/ITSkystudio/p/11599708.html

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