Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

You have nothing in your shopping cart yet.

Title: CALCULATOR PROGRAM C SHARB
Description: C SHARB CALCULATOR PROGRAM

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


isual studio 2015\Projects\calculator\calculator\Form1
...
Windows
...
Text == "" && IBLDisplay
...
IndexOf( "") >= 0)
{
return;
if (cleardisplay == true)
{
IBLDisplay
...
Text = IBLDisplay
...
Text;
}
}
private void operator_Click(object sender, EventArgs e)
{
if (op != "")
{
equal_Click(sender, e);
}
op = "";
op = ((Button)sender)
...
ToSingle(IBLDisplay
...
isual studio 2015\Projects\calculator\calculator\Form1
...
Text = Convert
...
ToSingle
(IBLDisplay
...
Text = Convert
...
ToSingle
(IBLDisplay
...
Text = Convert
...
ToSingle
(IBLDisplay
...
Text = Convert
...
ToSingle
(IBLDisplay
...
Text = Convert
...
Pow(operand,
Convert
...
Text)));
}
private void bsquare_Click(object sender, EventArgs e)
{
Single num=Convert
...
Text);
IBLDisplay
...
ToString(num * num);
}
private void bsqrt_Click(object sender, EventArgs e)
{
IBLDisplay
...
ToString(Math
...
ToDouble
(IBLDisplay
...
Text = Convert
...
Log10(Convert
...
Text)));
}
private void bsin_Click(object sender, EventArgs e)
{
IBLDisplay
...
ToString(Math
...
ToDouble
(IBLDisplay
...
isual studio 2015\Projects\calculator\calculator\Form1
...
Text = Convert
...
Cos(Convert
...
Text)));
}
private
{
int
num
ans
for

void bfact_Click(object sender, EventArgs e)

ans, num, i;
= Convert
...
Text);
= 1;
(i = 1; i <= num; i++)
ans = ans * i;
IBLDisplay
...
ToString(ans);

}
private void bclr_Click(object sender, EventArgs e)
{
cleardisplay = false;
IBLDisplay
Title: CALCULATOR PROGRAM C SHARB
Description: C SHARB CALCULATOR PROGRAM