Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <vector>
- using namespace std;
- int main() {
- vector<int> month_lengths = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
- int number_month;
- cin >> number_month;
- cout << month_lengths[number_month];
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement