1. Soru için böyle mantık kurdum
int metre = Int32.Parse(textBox1.Text);
int kepce = Int32.Parse(textBox2.Text);
double yuzdebul = ((metre * kepce)*4)/100;
double sonuc = (metre * kepce) - yuzdebul;
listBox1.Items.Add(sonuc);
int toplamsonuc = 0;
for (int i = 0; i < listBox1.Items.Count; i++)
{
toplamsonuc += Convert.ToInt32(listBox1.Items[i]);
}
label6.Text = sonuc.ToString();
label4.Text = toplamsonuc.ToString();