#純靠北工程師3z2
----------
今天教各位如何用C++寫忍者code(閏年判斷為例)
正常人︰
```
int year = 2020;//year:今年
if(
(
year % 4 == 0
&& year % 100 != 0
) ||
year % 400 == 0
)//分支
cout << "Yes"; //成立
else cout << "No";//不成立
```
忍者︰
```
const char* _[2] = {"No","Yes"};
int __nj_ = 2020;
std::cout << _[!(__nj_&3)&&__nj_%25||!(__nj_&15)];
```
各位想當忍者嗎?
----------
🗳️ [群眾審核] https://kaobei.engineer/cards/review
👉 [GitHub Repo] https://github.com/init-engineer/init.engineer
📢 [匿名發文] https://kaobei.engineer/cards/create
🥙 [全平台留言] https://kaobei.engineer/cards/show/5150
const char 在 char * const 三者的區別- IT閱讀 的相關結果
一、const char *ptr;. 定義一個指向字元常量的指標,這裡,ptr是一個指向char* 型 ... ... <看更多>
const char 在 [轉]C的關鍵字——const的理解和用法 的相關結果
const char ch = 'a'; const int a[5] = {1, 2, 3, 4, 5}; const int *p = a; //a是一個陣列的首位址.p是指向常量的指標 int * const p = a; //a是一個陣列的首位址.p ... ... <看更多>
const char 在 指標與字串 的相關結果
const char *text = "hello";. 如此一來,試圖透過 text 改變字元,編譯器會失敗,從而避免了執行時期的錯誤。 ... <看更多>