摘要:
题目 2019.9.7,icpc徐州网络赛的E题 XKC's basketball team ,计蒜客上还可以做。 链接:https://nanti.jisuanke.com/t/41387 Input The first line contains two integers n and m ( 2 阅读全文
摘要:
不准用+,-,*,/ 运算操作符来实现四则运算。 1、整数加法 https://leetcode.com/problems/sum-of-two-integers/ int add(int a, int b) { int ans = a; while (b) {//直到没有进位 ans = a ^ 阅读全文