Last active
July 23, 2024 06:25
-
-
Save HerringtonDarkholme/2dbb2a1ec748a786f54908320447b3dd to your computer and use it in GitHub Desktop.
g++ nihongo.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define エスティーディー std | |
#define アイオーストリーム <iostream> | |
#define ユージング using | |
#define イフ if | |
#define インクルード #include | |
#define イント int | |
#define シーアウト cout | |
#define シーイン cin | |
#define ネームスペース namespace | |
#define ブール bool | |
#define リターン return | |
#define メイン main | |
#define ナンバー number | |
#define エンドエル endl | |
#define トゥルー true | |
#define フォルス false | |
/* #インクルード <アイオーストリーム> */ | |
#include アイオーストリーム | |
ユージング ネームスペース エスティーディー; | |
ブール イズイーブン(イント ナンバー) { | |
イフ (ナンバー % 2 == 0) { | |
リターン トゥルー; | |
} | |
リターン フォルス; | |
} | |
イント メイン() { | |
イント ナンバー; | |
シーアウト << "エフターア ナンバー: "; | |
シーイン >> ナンバー; | |
シーアウト << イズイーブン(ナンバー) << エンドエル; | |
リターン 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment