This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

C# made calculator easy

Below program show a simple calculator with simple definitions………..

using System;public class Calculator
{
public int Add(int value1, int value2)
{
return value1 + value2;
}
public int Subtract(int value1, int value2)
{
return value1 – value2;
}

public int Multiply(int value1, int value2)
{
return value1 * value2;
}

public int Divide(int value1, int value2)
{
return value1 / value2;
}
}

VN:F [1.5.7_846]
Rating: 0.0/10 (0 votes cast)
VN:F [1.5.7_846]
Rating: 0 (from 0 votes)

Related posts:

  1. JAVA Tutorial

Leave a Reply

Comments (required)

Spam Protected