using System;
namespace MyFirstProgram
{
internal class Program
{
static void Main(string[] args) // main method
{
// 논리연산자
// && and, || or
Console.WriteLine("What's the temperature outside: (C)");
double temp = Convert.ToDouble(Console.ReadLine());
if (temp >= 10 && temp <= 25) // 두 조건 모두 충족해야 true
{
Console.WriteLine("It's warm outside!");
}
else if (temp <= -50 || temp >= 50) // 둘 중 하나라도 충족하면 true
{
Console.WriteLine("Do not go outside!");
}
}
}
}
728x90
'언어 > [C#]' 카테고리의 다른 글
[C#] for문 (for loop) (0) | 2023.03.01 |
---|---|
[C#] while문 (while loop) (0) | 2023.03.01 |
[C#] switch 문 switch - case (0) | 2023.03.01 |
[C#] if 조건문 if - else if - else (0) | 2023.03.01 |
[C#] String 함수 ToUpper(), ToLower(), Replace(), Insert(), Length, Substring() (0) | 2023.03.01 |