public static void Main()
Console.WriteLine("Arbiwijaya Kwek 1831121");
Console.WriteLine("Masukan kode produk (r01-r08 & k01-k08)");
kode = Console.ReadLine();
nama = "Roti Strawberry";
nama = "Produk tidak terdaftar";
if (nama != "Produk tidak terdaftar")
Console.WriteLine("Masukan jumlah barangnya");
jumlah = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("====================================================");
Console.WriteLine("Nama" + "\t" + "\t" + "Jumlah" + "\t" + "Harga");
Console.WriteLine("----------------------------------------------------");
Console.WriteLine(nama + "\t" + jumlah + "\t" + total);
Console.WriteLine("====================================================");
else { Console.WriteLine("Produk tidak terdaftar"); }