Challenge: if Condition
Write an if-condition which checks if the variable x
is in the range of 40 to 70 (including 40 and 70). Use the <=
operators for comparison. If the condition is true, it should output "In Range
".
main.cs
12345678910111213141516using System; namespace ConsoleApp { class Program { static void Main(string[] args) { int x = 55; // Write code below this line // Write code above this line } } }
The syntax of an if-condition is:
if(condition) { /* code to execute */ }
main.cs
1234567891011121314151617181920using 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 } } }
Kiitos palautteestasi!
Kysy tekoälyä
Kysy tekoälyä
Kysy mitä tahansa tai kokeile jotakin ehdotetuista kysymyksistä aloittaaksesi keskustelumme
Awesome!
Completion rate improved to 1.59
Challenge: if Condition
Pyyhkäise näyttääksesi valikon
Write an if-condition which checks if the variable x
is in the range of 40 to 70 (including 40 and 70). Use the <=
operators for comparison. If the condition is true, it should output "In Range
".
main.cs
12345678910111213141516using System; namespace ConsoleApp { class Program { static void Main(string[] args) { int x = 55; // Write code below this line // Write code above this line } } }
The syntax of an if-condition is:
if(condition) { /* code to execute */ }
main.cs
1234567891011121314151617181920using 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 } } }
Kiitos palautteestasi!