编写一个Java应用程序,实现如下功能: 1) 判断两个字符串是否相同,s1=”you are a student”,s2=”how 15
3、编写一个Java应用程序,实现如下功能:1)判断两个字符串是否相同,s1=”youareastudent”,s2=”howareyou”;2)判断字符串”220302...
3、 编写一个Java应用程序,实现如下功能:
1) 判断两个字符串是否相同,s1=”you are a student”,s2=”how are you”;
2) 判断字符串”22030219851022024”的前缀、后缀是否和某个字符串”220302”相同;
3) 按默认顺序比较两个字符串”你”和”我”的大小关系;
4) 将数字型字符串”100”和”123.678”转换为数字; 展开
1) 判断两个字符串是否相同,s1=”you are a student”,s2=”how are you”;
2) 判断字符串”22030219851022024”的前缀、后缀是否和某个字符串”220302”相同;
3) 按默认顺序比较两个字符串”你”和”我”的大小关系;
4) 将数字型字符串”100”和”123.678”转换为数字; 展开
3个回答
展开全部
一下代码已经测试通过:
public class Test {
/**
* 判断两个字符串是否相同,str1=”you are a student”,str2=”how are you”;
*
* @param str1 字符串1
* @param str2 字符串2
* @return 相等:true,不等:false
*/
public static boolean compareStr(String str1, String str2) {
return str1.equals(str2);
}
/**
* 判断字符串”22030219851022024”的前缀、后缀是否和某个字符串”220302”相同;
* 注意:不可含有正则匹配的特殊字符
*
* @param str1 字符串1
* @param str2 字符串2
* @return 相等:true,不等:false
*/
public static boolean comparePart(String str1, String str2) {
if(str1.matches("^" + str2 + ".+$") && str1.matches("^.+" + str2 + "$")) {
return true;
}
return false;
}
/**
* 按默认顺序比较两个字符串”你”和”我”的大小关系;
*
* @param str1 字符串1
* @param str2 字符串2
* @return str1 > str2: 大于0的数, str1 = str2:返回0, str1 < str2 :小于0 的数
*/
public static int compareValue(String str1, String str2) {
return str1.compareTo(str2);
}
/**
* 将数字型字符串”100”和”123.678”转换为数字
*
* @param str 预转换字符串
* @return 转换字符串
*/
public static float convertData(String str) {
return Float.parseFloat(str);
}
public static void main(String[] args) {
String str1 = "you are a student";
String str2 = "how are you";
// (1)
System.out.println(compareStr(str1, str2));
// (2)
str1 = "22030219851022024";
str2 = "220302";
System.out.println(comparePart(str1, str2));
// (3)
str1 = "你";
str2 = "我";
System.out.println(compareValue(str1, str2));
// (4)
System.out.println(convertData("100"));
System.out.println(convertData("123.678"));
}
}
希望能帮到你!
public class Test {
/**
* 判断两个字符串是否相同,str1=”you are a student”,str2=”how are you”;
*
* @param str1 字符串1
* @param str2 字符串2
* @return 相等:true,不等:false
*/
public static boolean compareStr(String str1, String str2) {
return str1.equals(str2);
}
/**
* 判断字符串”22030219851022024”的前缀、后缀是否和某个字符串”220302”相同;
* 注意:不可含有正则匹配的特殊字符
*
* @param str1 字符串1
* @param str2 字符串2
* @return 相等:true,不等:false
*/
public static boolean comparePart(String str1, String str2) {
if(str1.matches("^" + str2 + ".+$") && str1.matches("^.+" + str2 + "$")) {
return true;
}
return false;
}
/**
* 按默认顺序比较两个字符串”你”和”我”的大小关系;
*
* @param str1 字符串1
* @param str2 字符串2
* @return str1 > str2: 大于0的数, str1 = str2:返回0, str1 < str2 :小于0 的数
*/
public static int compareValue(String str1, String str2) {
return str1.compareTo(str2);
}
/**
* 将数字型字符串”100”和”123.678”转换为数字
*
* @param str 预转换字符串
* @return 转换字符串
*/
public static float convertData(String str) {
return Float.parseFloat(str);
}
public static void main(String[] args) {
String str1 = "you are a student";
String str2 = "how are you";
// (1)
System.out.println(compareStr(str1, str2));
// (2)
str1 = "22030219851022024";
str2 = "220302";
System.out.println(comparePart(str1, str2));
// (3)
str1 = "你";
str2 = "我";
System.out.println(compareValue(str1, str2));
// (4)
System.out.println(convertData("100"));
System.out.println(convertData("123.678"));
}
}
希望能帮到你!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询