#include <iostream>
using namespace std;
int main() {
int a = 12, b = 24;
____________; // 在此处填入代码
a =a ^ b;
b = a ^ b;
cout << a << " "<< b << endl;
return 0;
}
int array[5] = {3, 7, 5, 2, 4};
int min = 0;
for (int i = 0; i < 5; i++)
if (_________) // 在此处填写代码
min =array[i];
cout << min << endl;
int array[5] ={1, 2, 4, 8, 16};
int res = 0;
__________; // 在此处填写代码
cout << res << endl;
评价对象得分