Code : 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 Calculator { public partial class Form1 : Form { string input = string.Empty; string operand1 = string.Empty; string operand2 = string.Empty; char operation; double result = 0.000; public Form1() { InitializeComponent(); } private void zero_Click(object sender, EventArgs e) { this.hasil.Text = ""; input += "0"; this.hasil.Text += input; } private void dot_Click(object sender, EventArgs e) { this.hasil.Text = ""; input += "."; this.hasil.Text += input; } private void cancel_Click(object sender, EventArgs...