This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
lessons/C++/lesson2/task3.cpp
2023-07-16 13:23:25 +00:00

13 lines
294 B
C++

#include <iostream>
int main() {
const int days[]{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int month;
std::cin >> month;
if (month <= 0 || month > 12) {
std::cout << "You are a bad person!\n";
return 0;
}
std::cout << days[month - 1] << '\n';
}