Assignment 4
Assignment 4
Q1. Write ASP & C# code to design & function a Simple EMI calculator as shown below.
Program C#
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 Simple_Interest_calculator
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
float interest, Amount;
float month;
private void button1_Click(object sender, EventArgs e)
{
month =Convert.ToSingle(textBox3.Text) /12;
namespace Simple_Interest_calculator
{
partial class Form1
{
private System.ComponentModel.IContainer components = null;
#endregion
Output Screen