牛客883901697号
牛客883901697号
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
牛客883901697号的博客
全部文章
(共13篇)
题解 | #求int型正整数在内存中存储时1的个数#
import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in =...
2024-04-26
1
115
题解 | #寻找第K大#
import java.util.*; public class Solution { public int findKth(int[] a, int n, int K) { // write code here return findKth_(a,0,n-...
2021-09-10
0
360
数值的整数n次方
public class Solution { public double Power(double base, int exponent) { double re=1; int ex = Math.abs(exponent); for(int i=0...
2021-09-07
0
299
首页
上一页
1
2
下一页
末页