当前位置:网站首页>实验七 常用类的使用
实验七 常用类的使用
2022-07-06 09:22:00 【文文喜欢郭子吖】
实验七 常用类的使用
实验目的
1. 了解类库的概念及API的使用方法。
2. 掌握常用类的使用方法。
实验学时 2学时
实验内容
1. 输入两个字符串str1、str2,统计字符串str2出现在str1中的次数。
如:str1=”aaas lkaaas” ,str2=” as” ,则应输出 2
提示:文本输入
import java.util.Scanner;
public class test {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in); //定义扫描键盘输入的对象
String s = sc.nextLine(); //从键盘读入一行文本
...
sc.close();
}
package code71;
import java.util.Scanner;
public class code71 {
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
int sum=0;
System.out.print("请输入第一个字符串:");
String str1=in.nextLine(); //输入第一个字符串
System.out.print("请输入第二个字符串:");
String str2=in.nextLine(); //输入第二个字符串
int a=str1.indexOf(str2); //搜索str2在str1中出现的位置
while(a!=-1) {
sum++;
a=str1.indexOf(str2,a+1); //统计次数
}
System.out.println("字符串str2出现在str1中的次数为:"+sum+"次!");
}
}
2. 从键盘输入一串字符,输出有多少个不同的字符、每个字符出现的次数。
package code72;
import java.util.Scanner;
public class code72 {
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
String str=in.nextLine();
StringBuffer b=new StringBuffer(str); //插入字符串缓冲区StringBuffer
int length=b.length(); //字符总数
System.out.println("总共有"+length+"个字母!");
String a; //声明单个字符
int index,sum;
for(int i=0;i<b.length();) {
sum=0;
a=b.substring(0,1); //截取单个字符
index=b.indexOf(a); //搜索单个字符在整个字符串中出现的位置
while(index!=-1) {
sum++;
b.deleteCharAt(index); //删除字符
index=b.indexOf(a,index); //统计次数
}
System.out.println(a+"字母有"+sum+"个!");
}
}
}
3. 编写一个 Java 程序,将用户输入的句子当中每一个单词的第一个字母大写。
package code73;
import java.util.Scanner;
public class code73 {
public static void main(String[] args) {
// TODO 自动生成的方法存根
System.out.println("请输入一个句子:");
Scanner in = new Scanner(System.in);
String str = in.nextLine(); //输入原字符串
String str1 = ""; //最后输出的字符串
String[] a=str.split(" "); //将字符串按空格分割
for(int i=0;i<a.length;i++){ //遍历字符串,将每个字符串数组中的每个单词首字母替换为大写
a[i]=a[i].replace(a[i].charAt(0),a[i].toUpperCase().charAt(0));
str1+=a[i]+" "; //将替换后的字符串拼接到空串后
}
System.out.println("更改后的句子为:"+str1.trim());
}
}
4. 输入一个八进制数字串(在整型数据范围内),分别以2进制、10进制、16进制输出。
提示:Integer.parseInt("100",8); //将8进制100转换成十进制数
Integer.toBinaryString(100); //将十进制整数100转换成二进制数
package code74;
import java.util.Scanner;
public class code74 {
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
System.out.println("输入一个八进制数字串(在整型数据范围内):");
String a=in.nextLine(); //输入原字符串
int b=Integer.parseInt(a); //原字符串转换为数字
System.out.println("2进制为:"+Integer.toBinaryString(b)); //将b转换为2进制数
System.out.println("8进制为:"+Integer.toOctalString(b)); //将b转换为8进制数
System.out.println("16进制为:"+Integer.toHexString(b)); //将b转换为16进制数
}
5. 编写一段可生成一个随机字母的程序。
package code75;
import java.util.Arrays; //导入Arrays
public class code75 {
public static void main(String[] args) {
// TODO 自动生成的方法存根
char a[]={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
//建立一个包含26个大小写字母的数组
char ch[]=new char[1]; { //一个字母
for(int i=0;i<1;i++)
{
int b;
b=(int)(Math.random()*(a.length)); //生成一个随机数
ch[i]=a[b]; //根据位置找到相应字母
}
System.out.println(Arrays.toString(ch)); //数字类型转换为字符串
}
}
}
6. 编程求100天以后是几月几号星期几。
package code76;
import java.time.LocalDate; //导入LocalDate
public class code76 {
public static void main(String[] args) {
// TODO 自动生成的方法存根
String[] weekday = {"星期一","星期二","星期三","星期四","星期五","星期六","星期日"}; //建立星期数组
LocalDate today = LocalDate.now(); //获取当前时间
System.out.println("今天是:" + today + "," + weekday[today.getDayOfWeek().getValue()-1]); //输出今天的格式化时间
LocalDate hundredDayLater = LocalDate.now().plusDays(100); //获取100天后的时间
System.out.println("100天后是:" + hundredDayLater + "," + weekday[hundredDayLater.getDayOfWeek().getValue()-1]); //输出100天后的格式化时间
}
}
实验小结
- Java系统中有很多预定义类,根据其功能不同划分成不同的包,所有包合称类库;
- 搜素指定字符或者字符串在另一个字符串中出现的位置,可以用indexOf()方法;
- 在字符串中截取子字符串时使用方法substring();
- StringBuffer类表示的是一个本身内容可变的字符串对象,包含一个缓冲区,主要用于完成字符串的动态添加、插入和替换等操作;
- 数字和字符串之间的转换,主要使用parseInt()方法和toString()方法;
- toBinaryString()、toHexString()、toOctalString()方法,可以分别将一个值以二进制、十六进制和八进制形式转化成字符串;
- Math类中的Random()方法可以用来获取随机数。
边栏推荐
- 【九阳神功】2019复旦大学应用统计真题+解析
- [modern Chinese history] Chapter 9 test
- Implementation principle of automatic capacity expansion mechanism of ArrayList
- 5.MSDN的下载和使用
- ArrayList的自动扩容机制实现原理
- Redis的两种持久化机制RDB和AOF的原理和优缺点
- About the parental delegation mechanism and the process of class loading
- Set container
- The latest tank battle 2022 - Notes on the whole development -2
- [中国近代史] 第五章测验
猜你喜欢
Differences among fianl, finally, and finalize
Mode 1 two-way serial communication is adopted between machine a and machine B, and the specific requirements are as follows: (1) the K1 key of machine a can control the ledi of machine B to turn on a
Principles, advantages and disadvantages of two persistence mechanisms RDB and AOF of redis
MySQL事务及实现原理全面总结,再也不用担心面试
canvas基础1 - 画直线(通俗易懂)
Thoroughly understand LRU algorithm - explain 146 questions in detail and eliminate LRU cache in redis
[面試時]——我如何講清楚TCP實現可靠傳輸的機制
The difference between cookies and sessions
Have you encountered ABA problems? Let's talk about the following in detail, how to avoid ABA problems
QT meta object qmetaobject indexofslot and other functions to obtain class methods attention
随机推荐
MySQL中count(*)的实现方式
This time, thoroughly understand the MySQL index
MySQL锁总结(全面简洁 + 图文详解)
vector
Beautified table style
【九阳神功】2016复旦大学应用统计真题+解析
A comprehensive summary of MySQL transactions and implementation principles, and no longer have to worry about interviews
String abc = new String(“abc“),到底创建了几个对象
Mode 1 two-way serial communication is adopted between machine a and machine B, and the specific requirements are as follows: (1) the K1 key of machine a can control the ledi of machine B to turn on a
【九阳神功】2018复旦大学应用统计真题+解析
The difference between overloading and rewriting
9. Pointer (upper)
2022泰迪杯数据挖掘挑战赛C题思路及赛后总结
简单理解ES6的Promise
The latest tank battle 2022 full development notes-1
Implementation principle of automatic capacity expansion mechanism of ArrayList
Cookie和Session的区别
强化学习系列(一):基本原理和概念
2. C language matrix multiplication
简述xhr -xhr的基本使用