摘要:
给定两个整数A和B。编写函数,返回将整数A转变成整数B所需要改变的数位个数。 import java.util.*; public class Transform { public int calcCost(int A, int B) { // write code here return Inte 阅读全文
2020年10月29日 #
摘要:
题目描述 给定一个double num,范围是0到1的实数,若其能用32位以内的二进制表示出来则返回值string为其二进制值,若不能则返回值为“Error”。 测试样例: import java.util.*; public class BinDecimal { final static Stri 阅读全文
摘要:
public class Main { static volatile int age = 10; public int getAge() { return age; } public int setAge() { //age = age+2 线程不安全,因为 volatile 只能保证线程之间内存 阅读全文