标签:取反 turn ios 一个 函数返回 cin 一行代码 mit while
请使用【一行代码】补全bitManipulation3函数使得程序能达到上述的功能
#include <iostream> using namespace std; int bitManipulation3(int n, int i) {
// 在此处补充你的代码
} int main() { int t, n, i; cin >> t; while (t--) { cin >> n >> i; cout << bitManipulation3(n, i) << endl; } return 0; }
1 0 32
-1
#include <iostream>
using namespace std;
int bitManipulation3(int n, int i)
{
return n ^ -1 << (32 - i);// 在此处补充你的代码
}
int main()
{
int t, n, i;
cin >> t;
while (t--) {
cin >> n >> i;
cout << bitManipulation3(n, i) << endl;
}
return 0;
}
标签:取反 turn ios 一个 函数返回 cin 一行代码 mit while
原文地址:http://www.cnblogs.com/w1992/p/7436482.html