输出两个无符号短整型数,依次计算并输出它们的与、或、按位加的结果。
高级语言程序设计
参考答案:#include <iostream>
using namespace std;
void main(){
unsign int a,b;
cin >> a >> b;
cout << a&b << a|b << a+b;
}
高级语言程序设计
参考答案:#include <iostream>
using namespace std;
void main(){
unsign int a,b;
cin >> a >> b;
cout << a&b << a|b << a+b;
}