Skip to content

Instantly share code, notes, and snippets.

View ilia295's full-sized avatar

ilia295

  • Joined Oct 8, 2025
View GitHub Profile
#include <iostream>
using namespace std;
int main() {
int number;
cout << "Номер місяця (1-12): ";
cin >> number;
if (number == 1) cout << "Січень";
else if (number == 2) cout << "Лютий";
#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "");
int number;
cout << "Введіть число від 1 до 100: ";
cin >> number;