day08-常用类_String的练习1

This commit is contained in:
2026-01-20 14:45:53 +08:00
parent 578856e176
commit 8316fbd2f2
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.inmind.string01;
/*
键盘录入QQ号码验证格式的正确性。
* 必须是5—12位数字。
* 0不能开头。
*/
public class Test05 {
}

View File

@@ -0,0 +1,8 @@
package com.inmind.string01;
/*
字符串查找。
* 键盘录入一个比较长的字符串,再录入一个子字符串。
* 统计小字符串在大字符串中出现的次数。
*/
public class Test06 {
}