Java
沉着梅牡
河海后仔生
展开
-
java统计字符串中字符出现的次数
利用indexOf()方法统计字符串中字符出现的次数public class test { public static void main(String[] args) { String str = "88123214104141298"; char ch = '8'; int t = 0,i = 0; while(str.indexOf(ch, i) != -1) { t++; i = str.indexOf(ch, i) + 1; } Syst原创 2021-05-24 23:56:30 · 294 阅读 · 0 评论 -
编写一个方法,输出在一个字符串中,指定字符串出现的次数。
编写一个方法,输出在一个字符串中,指定字符串出现的次数。原创 2021-04-29 00:06:15 · 2342 阅读 · 0 评论 -
有一对雌雄兔子,每两个月就繁殖一对雌雄兔子。问n个月后共有多少对兔子?试用递归方法编写程序。
有一对雌雄兔子,每两个月就繁殖一对雌雄兔子。问n个月后共有多少对兔子?试用递归方法编写程序。public class homework { public static int 繁殖(int n, int 对数) { if(n == 0) { return 对数; } n-=2; 对数 = 2 * 对数; return 繁殖(n, 对数); } public static void main(String[] args) {原创 2021-04-13 17:56:33 · 1924 阅读 · 1 评论 -
java万年历
import java.util.*;class PrintCalendar{ int year; int month; public PrintCalendar(int year,int month){ this.year = year; this.month = month; } int maxDayInMonth(){ //返回一个月的天数 int max=30; if(month==1|month==3|month==5|month==7|month==8原创 2021-05-18 17:37:35 · 173 阅读 · 0 评论