Calculator

Simple Calculator using a Class in C#

Submitted by donbermoy on
In this C# tutorial, I will teach you how to create a program that will compute sum, difference, quotient, and product as just a simple calculator that uses a class. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Age Calculator Using C#

Submitted by donbermoy on
In this tutorial, we will going to create a program that can calculate your age using C# as the programming language. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and name your project as Calculate age. 2. Next, add one DateTimePicker named DateTimePicker1 to have input of our dates.

Date Calculator in Visual Basic 2008

Submitted by janobe on
Today I’m going to show you how to create a simple Date Calculator in Visual Basic 2008.With this, it will help you know the dates before and after the present date. For instance, you want to jump into seven days after the present date, the date calculator will automatically calculate it. And you don’t have to count the days anymore. So lets begin: Open Visual Basic 2008, create a new Windows Application and do the Form just like this.

The Salary Calculator by dHROOb

Submitted by TheProgrammer on
-==================================- | Project Name : Salary Calculator | -==================================- Language : .NET Time Taken : 1 Hr. Difficulty Lvl : EASY Protection : NONE License : Share-A-Like | As-It-Is Developer : SunShine/TheProgrammer Copyright : SunShine Soft Version : 1.1 (build 1.1.2) Date Of Publish : 4:44 PM 11/26/2013 -==================================- | What it is /

How to Create a Simple Calculator in Python

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple calculator in Python. The Theory: Here's how the program will be structured: Get the users first number Get the users second number Get the users action Use if statements to perform the calculation Print out the result Getting The Users Numbers: First we want to get the users two numbers to calculate together somehow.