有意思的题目
不使用 +(加法运算符) 计算两个整数的和
用减法运算符
private static int fun1(int a, int b) {
return a - (-b);
}
用循环
用到了 ++ 不知道合不合题意
private static int fun2(int a, int b) {
while (a > 0) {
b++;
a--;
}
while (a < 0) {
b--;
a++;
}
return b;
}
使用位运算
原文链接 https://blog.csdn.net/wu_kung/article/details/22380603
private static int fun3(int a, int b) {
int sum, carry;
do {
sum = a ^ b;
carry = (a & b) << 1;
a = sum;
b = carry;
} while (carry != 0);
return sum;
}
使用 log 和 exp
这个怎么说呢,真想不到啊,哈哈哈
private static int fun4(int a, int b) {
return (int) Math.log(Math.exp(a) * Math.exp(b));
}
main方法不写任何代码打印出hello world
静态代码块
public class PrintHelloFun {
static {
System.out.println("hello world");
}
public static void main(String[] args) {
}
}
用方法赋值给静态变量
public class PrintHelloFun {
private static String a = fun();
public static void main(String[] args) {
}
private static String fun() {
System.out.println("hello world");
return "haha";
}
}
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 rockeycui@163.com
文章标题:有意思的题目
文章字数:227
本文作者:崔石磊(RockeyCui)
发布时间:2018-07-18, 19:59:16
原始链接:https://cuishilei.com/有意思的题目.html版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。