这道题涉及到一个密码学中学到的方法 设置以下矩阵: a b 1 0 0 1 然后将a,b使用矩阵运算(列运算)化为0 1 或者1 0,其中1下面的那个就是结果 #include <iostream> #include <vector> using namespace std; int main() { int a, b; cin >> a >> b; vector<int> temp1{ a,1,0 }; vector<int> temp2{ b,0,1 }...