All we need is one listbox, one button and the codes.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Matematik_Terimler
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
listBox1.Items.Add(Math.Abs(-10.5)); //To find absolete value.
listBox1.Items.Add(Math.Cos(100)); //To find absolete cosine.
listBox1.Items.Add(Math.Sin(100)); //To find absolete sinus.
listBox1.Items.Add(Math.Cot(100)); //To find absolete cotanjant.
listBox1.Items.Add(Math.Tan(100)); //To find absolete tanjant.
listBox1.Items.Add(Math.Ceiling(5.5)); //To find smallest integer after 5.5.
listBox1.Items.Add(Math.Floor(5.5)); //To find biggest integer before 5.5.
listBox1.Items.Add(Math.Max(10, 20)); //To find biger value.
listBox1.Items.Add(Math.Min(10, 20)); //To find smaller value.
listBox1.Items.Add(Math.Pow(2, 3)); //2*2*2
listBox1.Items.Add(Math.Sqrt(25)); //To find square rate.
}
}
}