C 语言布尔阵列谜题?


这是一个基于数组的谜题,你需要将一个包含两个元素的数组中的所有数字更改为 0。数组的一个元素为 0,而另一个元素可能为 0 也可能不为 0。

要解决此谜题,程序需要找到非零元素并将其更改为 0。

要解决布尔数组谜题,需要满足以下约束条件

  • 允许的操作是取反,其他操作是不允许的。
  • 不允许循环和条件语句。
  • 也不允许直接赋值。

解决布尔数组谜题的程序

#include <iostream>
using namespace std;
void makeZero(int a[2]) {
   a[ a[1] ] = a[ !a[1] ];
}
int main() {
   int a[] = {1, 0};
   makeZero(a);
   cout<<"arr[0] = "<<a[0]<<endl;
   cout<<"arr[1] = "<<a[1];
   return 0;
}

输出

arr[0] = 0
arr[1] = 0
You can use other ways too. Like this one which does not require the negation operation.
a[ a[1] ] = a[ a[0] ]

更新日期:08-Aug-2019

170 浏览量

启动你的 职业生涯

完成课程认证

开始学习
广告