namespace CSharp
{
class Program
{
static void Main(string[] args)
{
int hp = 100;
Console.WriteLine(hp++);
// <= > >= != ==
bool isAlive = (hp > 0);
bool isHighLevel = (isHighLevel >= 40);
// && AND || OR ! NOT
// a = 살아있는 고렙 유저인가요?
bool a = isAlive && isHighLevel;
// b = 살아있거나, 고렙 유저이거나, 둘 중 하나인가요?
bool b = isAlive || isHighLevel;
//c = 죽은 유저인가요?
bool c = !isAlive;
}
}
}
'C# > 데이터 갖고 놀기' 카테고리의 다른 글
[C#]데이터 마무리 (0) | 2021.03.25 |
---|---|
[C#]비트 연산 (0) | 2021.03.25 |
[C#] 정수 형식, 진수 변환 등 (0) | 2021.03.23 |