- 博客(3)
- 收藏
- 关注
原创 遍历某个数的各位
利用for循环实现,通过j=j/10来移动遍历 //遍历该数的各位 for (int j = i; j>0; j=j/10) { if(j%10==2) count++; }这里是统计该数中有多少个"2"。
2022-04-01 16:10:22 232 1
原创 最小公倍数和最大公约数
求最小公倍数1、max、min标记较大数、较小数;2、temp=原始较大数;3、若max%min!=0,max=max+temp;4、重复第3步骤,直到max%min==0; //求最小公倍数 public static int function(int a,int b) { int max = Math.max(a,b); int min = Math.min(a,b); int temp = max; while(max%min!=0) { max+=temp;
2022-04-01 15:52:06 91
原创 Java String常用方法总结
1、Java String.split()根据匹配给定的正则表达式来拆分字符串,示例如下public class Test { public static void main(String args[]) { String str = new String("Welcome-to-51gjie"); System.out.println("- 分隔符返回值 :" ); for (String retval: str.split("
2022-02-11 18:29:26 123
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人