Download as pdf or txt
Download as pdf or txt
You are on page 1of 4

using System.

Linq;
using System.Text;
using System.Windows.Forms;

namespace reversedString
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
double calc;

private void enter_Click(object sender, EventArgs e)


{
double weight = Double.Parse(txtWeight.Text);

if (weight < 5)
calc = weight * 1.0;
if(weight>=5 && weight <8)
calc = weight * 0.9;
if(weight>=8 && weight < 12)
calc = weight * 0.75;
if(weight>12)
calc = weight * 0.6;

display.Items.Add("Name of Dog: " + txtName.Text );


display.Items.Add(" ");
display.Items.Add("Weekly dosage: " + calc.ToString() + "g");

}
}

You might also like