-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
25 lines (21 loc) · 700 Bytes
/
Program.cs
File metadata and controls
25 lines (21 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LatihanOverloadingMethod
{
class Program
{
static void Main(string[] args)
{
Numbers number = new Numbers();
Console.WriteLine("Minimum #1 : {0}", number.FindMinimum(3, 1));
Console.WriteLine("Minimum #2 : {0}", number.FindMinimum(3, 2, 4));
Console.WriteLine(); // Tambahkan baris kosong
Console.WriteLine("Maximum #1 : {0}", number.FindMaximum(3, 1));
Console.WriteLine("Maximum #2 : {0}", number.FindMaximum(3, 2, 4));
Console.ReadKey();
}
}
}