Focus mode

C# 101

If-ElseIf-Ternary-If

If-Else Yapısı ve Ternary If

Örnek bir if else kullanımı aşağıdaki gibidir:

bool condition = true;

if (condition)
{
    Console.WriteLine("Değişken: true");
}
else
{
    Console.WriteLine("Değişken: false");
}

Project

HackerRank Challenge

Comments

You need to enroll in the course to be able to comment!