У нас вы можете посмотреть бесплатно #13 | Build menus with switch and case statements | Java tutorial for beginners или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Below are the notes from today's lesson. Check out my pinned comment for the source code used in this video :) // A switch statement is sometimes useful for creating a multiway branch e.g. like a menu of different options. // Each menu item represents a list of options and the code will respond in a different way depending on what is chosen. // Useful if you find your if statements becoming long and cumbersome - it can be a bit more concise. // In this example we'll use a case statement for a simple currency converter style program.