哈囉大家好 ~ 各位準備好要迎接成為中階使徒的挑戰了嗎 ? /ᐠ .ᆺ. ᐟ\ノ
int a = 0;
if (a == 0)
{
Console.WriteLine("a 是 0");
}
else
{
Console.WriteLine("a 不是 0");
}
int b = 1;
if (b == 0)
{
Console.WriteLine("b 是 0");
}
else
{
Console.WriteLine("b 不是 0");
}
a 是 0
b 不是 0
int a = 0;
if (a == 0)
{
Console.WriteLine("a 是 0");
}
else if (a == 1)
{
Console.WriteLine("a 是 1");
}
else
{
Console.WriteLine("a 不是 1 或 0");
}
int b = 1;
if (b == 0)
{
Console.WriteLine("b 是 0");
}
else if(b == 1)
{
Console.WriteLine("b 是 1");
}
else
{
Console.WriteLine("b 不是 1 或 0");
}
int c = 2;
if (c == 0)
{
Console.WriteLine("c 是 0");
}
else if (c == 1)
{
Console.WriteLine("c 是 1");
}
else
{
Console.WriteLine("c 不是 1 或 0");
}
a 是 0
b 是 1
c 不是 1 或 0
int case_switch = 1;
switch (case_switch)
{
case 1:
Console.WriteLine("Case 1");
break;
case 2:
Console.WriteLine("Case 2");
break;
default:
Console.WriteLine("Default case");
break;
}
Case 1
int a = 5;
while (a >= 0)
{
Console.WriteLine(a);
a--;
}
5
4
3
2
1
0
for (int i = 5; i >= 0; i--)
{
Console.WriteLine(i);
}
5
4
3
2
1
0
string s = "ithome";
foreach (var c in s)
{
Console.WriteLine(c);
}
i
t
h
o
m
e
看到這裡代表你已經是 C# 的中階使徒囉 ~ 下一篇會講 C# 高階使徒的用法,那今天就到這裡囉 ~ 加油 ! ( ˘•ω•˘ ).oOஇ
https://learn.microsoft.com/zh-tw/dotnet/csharp/programming-guide/
https://www.youtube.com/watch?v=T9BeejD3i0g