一个单词在一个字符串中出现的次数表示其出现计数。示例如下所示:字符串 = 一个苹果是红色的。单词 = 红色单词红色在上述字符串中出现 1 次。演示此功能的程序如下所示。示例 实时演示public class Example { public static void main(String args[]) { String string = "Spring is beautiful but so is winter"; String word = "is"; String temp[] = string.split(" "); int count = 0; for (int i = 0; i < temp.length; i++) { if (word.equals(temp[i])) count++; } System.out.println("The string ... 阅读更多
从数字的给定位置提取 k 位涉及将数字转换为其二进制表示形式。示例如下所示:数字 = 20 二进制表示 = 10100 k = 3 位置 = 2 提取的位是 010,表示 2。演示此功能的程序如下所示。示例 实时演示public class Example { public static void main (String[] args) { int number = 20, k = 3, pos = 2; int exNum = ((1 > (pos - 1)); System.out.println("Extract " + k + ... 阅读更多