雖然這篇閏年判斷c鄉民發文沒有被收入到精華區:在閏年判斷c這個話題中,我們另外找到其它相關的精選爆讚文章
在 閏年判斷c產品中有1篇Facebook貼文,粉絲數超過10萬的網紅純靠北工程師,也在其Facebook貼文中提到, #純靠北工程師3z2 ---------- 今天教各位如何用C++寫忍者code(閏年判斷為例) 正常人︰ ``` int year = 2020;//year:今年 if( ( year % 4 == 0 && year % 100 != 0 ) || year % 40...
閏年判斷c 在 純靠北工程師 Facebook 的精選貼文
#純靠北工程師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