本文共 618 字,大约阅读时间需要 2 分钟。
#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std;/* * Complete the function below. */int maxXor(int l, int r) { int max = l^l; for(int i = l;i <= r;i++) for(int j = i;j <= r;j++) { if((i^j) > max) max = i^j; } return max;}int main() { int res; int _l; cin >> _l; int _r; cin >> _r; res = maxXor(_l, _r); cout << res; return 0;}
转载于:https://blog.51cto.com/9320314/1558582