你需要知道的是,取反指~
2024-08-19 17:38:14
发布于:云南
11阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int a[105][105],b[105][105];
int main(){
int n,m; cin >> n >> m;
for(int i = 1;i <= n;i++){
for(int j = 1;j <= m;j++) cin >> a[i][j];
}
for(int i = 1;i <= n;i++){
for(int j = 1;j <= m;j++) cin >> b[i][j];
}
for(int i = 1;i <= n;i++){
for(int j = 1;j <= m;j++) cout << ~(a[i][j] ^ b[i][j]) << " ";
cout << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个