Предмет: Информатика, автор: Emelu

Допоможіть скласти програму, яка за номером місяця визначає кількість днів у ньому, в С++ через switch і case.

Ответы

Автор ответа: Mirox921
1

Код:

#include <iostream>

int main() {

   int month;

   std::cout << "Введіть номер місяця (1-12): ";

   std::cin >> month;

   switch (month) {

       case 1:

           std::cout << "У січні 31 день." << std::endl;

           break;

       case 2:

           std::cout << "У лютому 28 або 29 днів." << std::endl;

           break;

       case 3:

           std::cout << "У березні 31 день." << std::endl;

           break;

       case 4:

           std::cout << "У квітні 30 днів." << std::endl;

           break;

       case 5:

           std::cout << "У травні 31 день." << std::endl;

           break;

       case 6:

           std::cout << "У червні 30 днів." << std::endl;

           break;

       case 7:

           std::cout << "У липні 31 день." << std::endl;

           break;

       case 8:

           std::cout << "У серпні 31 день." << std::endl;

           break;

       case 9:

           std::cout << "У вересні 30 днів." << std::endl;

           break;

       case 10:

           std::cout << "У жовтні 31 день." << std::endl;

           break;

       case 11:

           std::cout << "У листопаді 30 днів." << std::endl;

           break;

       case 12:

           std::cout << "У грудні 31 день." << std::endl;

           break;

       default:

           std::cout << "Ви ввели неправильний номер місяця." << std::endl;

           break;

   }

   return 0;

}


Emelu: Дякую за допомогу!!
Похожие вопросы
Предмет: Английский язык, автор: nounejm294
1.1. Andrew ____ (fall) off a camel when he was on holiday and he _______ (not be) happy.
2. My mum _________ (not can) drive when she ___ (be) eighteen.
3. My aunt and uncle ____ (go) on a cruise around the Caribbean last spring.

№2 Complete the sentences with the Past Simple of the verbs in brackets.Use full forms of the verbs.
1. When ____ (be) your parents born?
2. Stuart _______ (manage) to win the competition.
3. I ____________ (not feel) well yesterday so I ____ (leave) school early.

№3 Complete the sentences using used to and the verbs given:
play, not go, not eat, ride.
Use full forms of the verbs.
1. My friend ____________ the guitar but she doesn’t any more.
2. Joan__________________ bananas when she was young, but she likes them now.
3. In the past, Lee’s dad ____________ his bike to work every day. Now, he drives the car. 4. Billy _________________ horse riding every weekend but he does now.

№4 Complete the sentences with the adjective given or its adverb.
1. I don’t want Susan to drive me to school. She drives ________ . (terrible)
2. That’s a _________ (wonderful) idea! 3. Nick usually arrives _____ (early) on Monday mornings.
4. Tom went into his sister’s room _______ (quiet) because he wanted to surprise her.
5. This test is very ____ (easy).

№5 Choose the correct word.
Kevin and Fiona bought a van last _____.
a) yesterday b) week

№6 Choose the correct word.
I’m not going on a three-week voyage with_______!
a) his b) him

№7 Choose the correct word.
My mother watched a 3D film and _______ really enjoyed it.
a) her b) she

№8 Choose the correct word.
Mr Green arrived about two hours _______.
a) ago b) last
№9 Choose the correct word.
People often use chopsticks in Chinese restaurants but I can’t use _______.
a) it b) them
Предмет: Физика, автор: dziurbanv
Предмет: Алгебра, автор: andriyulanuk
Предмет: Математика, автор: Аноним