-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod4_1302210053cs.cs
42 lines (36 loc) · 1012 Bytes
/
mod4_1302210053cs.cs
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mod4_1302210053
{
internal class mod4_1302210053cs
{
enum Buah
{
Apel,
Aprikot,
Alpukat,
Pisang,
Paprika,
Blackberry,
Ceri,
Kelapa,
jagung
}
private static string getKodeBuah(Buah inputbuah)
{
string[] kodebuah = { "A00", "B00", "C00", "D00", "E00", "F00", "H00", "I00", "J00" };
return kodebuah[(int)inputbuah];
}
public static void Main(string[] args)
{
string output;
Console.WriteLine(getKodeBuah(Buah.Apel));
Console.WriteLine(getKodeBuah(Buah.Kelapa));
Console.WriteLine(getKodeBuah(Buah.Pisang));
Console.WriteLine(getKodeBuah(Buah.Blackberry));
}
}
}