Gyakorlás
This commit is contained in:
14
Tombok2/Plus/Program.cs
Normal file
14
Tombok2/Plus/Program.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Plus
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
int a = 10;
|
||||
int b = a++;
|
||||
int c = ++a;
|
||||
|
||||
Console.WriteLine($"B:{b},C:{c}");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user