首頁  >  文章  >  後端開發  >  在C語言中的布林數組謎題

在C語言中的布林數組謎題

WBOY
WBOY轉載
2023-08-29 15:05:051146瀏覽

在C語言中的布林數組謎題

這是一個基於陣列的謎題,需要你將包含兩個元素的陣列中的所有數字都改為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語言中的布林數組謎題的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除