Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions [Q]basic/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -3132,6 +3132,7 @@ Console.WriteLine("-----");
int count = stack.Count;
Console.WriteLine(count); // 2
Console.WriteLine("-----");

```

# Queue
Expand Down Expand Up @@ -3362,6 +3363,11 @@ double d7 = Math.Ceiling(9.01);
Console.WriteLine(d7); // 10
double d8 = Math.Ceiling(-9.01);
Console.WriteLine(d8); // -9

double d9 = Math.Round(9.015, 2);
Console.WriteLine(d9); // 9.02
double d10 = Math.Round(-9.014, 2);
Console.WriteLine(d10); // -9.01
Console.WriteLine("-----");

// MaxValue and MinValue
Expand Down