Nama : Achmad Khosyi' Assajjad Ramandanta NRP : 5025211007 Kelas : PBKK (A) TUGAS MEMBUAT APLIKASI KALKULATOR SEDERHANA C# Program : using Microsoft.Win32; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace KalkulSederhana { public partial class Form1 : Form { decimal bil1; decimal bil2; int opr; Boolean opr_selesai = false; public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { ...