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] ]

以上是 C语言中的布尔数组难题? 的全部内容, 来源链接: utcz.com/z/326662.html

回到顶部