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> | |
using namespace std; | |
int main() { | |
int number; | |
cout << "Номер місяця (1-12): "; | |
cin >> number; | |
if (number == 1) cout << "Січень"; | |
else if (number == 2) cout << "Лютий"; |
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> | |
using namespace std; | |
int main() { | |
setlocale(LC_ALL, ""); | |
int number; | |
cout << "Введіть число від 1 до 100: "; | |
cin >> number; |