Зміст курсу
Основи C#
Основи C#
Завдання з if-умовою
Напишіть умову if, яка перевіряє, чи змінна x
знаходиться в діапазоні від 40 до 70 (включно 40 і 70). Використовуйте оператори <=
для порівняння. Якщо умова виконується, вона повинна вивести "In Range".
main
using System; namespace ConsoleApp { class Program { static void Main(string[] args) { int x = 55; // Write code below this line // Write code above this line } } }
- Синтаксис if-умови:
if(condition) { /* код для виконання */ }
main
using System; namespace ConsoleApp { class Program { static void Main(string[] args) { int x = 55; // Write code below this line if (40 <= x && x <= 70) { Console.WriteLine("In Range"); } // Write code above this line } } }
Дякуємо за ваш відгук!