- 税金を納める制度
- 個人事業主は全員やる
- 会社員はやらなくていい(参考:年末調整)
This file contains hidden or 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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| typedef struct __physcheck | |
| { | |
| char name[20]; | |
| int height; | |
| double vision; | |
| struct __physcheck *next; | |
| } PhysCheck; |
This file contains hidden or 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
| function storageGet() { | |
| var res; | |
| chrome.storage.local.get(res = callbackFunc(items)); | |
| console.log(res); | |
| return res; | |
| } | |
| function callbackFunc(items) { | |
| console.log(items); | |
| callback(items); |
This file contains hidden or 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
| #include <iostream> | |
| #include <algorithm> | |
| #include <vector> | |
| #include <climits> | |
| using namespace std; | |
| typedef vector<int> vi; | |
| const int INF = INT_MAX; | |
| int arr_size = 10; | |
| int v[] = {-1,88,2,4,6,8,10,11,24,54}; |
This file contains hidden or 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
| #include <iostream> | |
| #include <algorithm> | |
| #include <vector> | |
| #include <climits> | |
| using namespace std; | |
| typedef vector<int> vi; | |
| const int INF = INT_MAX; | |
| const int SIZE = 13; |
This file contains hidden or 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
| #include <array> | |
| #include <iostream> | |
| #include <numeric> | |
| #include <vector> | |
| using namespace std; | |
| class Point : public std::array<double, 2> { | |
| public: | |
| static const int DIM = 2; |
NewerOlder