About 2,630,000 results
Open links in new tab
  1. C Program to Make a Simple Calculator - GeeksforGeeks

    Oct 3, 2024 · A simple calculator is a program that can perform addition, subtraction, multiplication, and division of two numbers provided as input. In this article, we will learn to create a simple calculator program in C.

  2. C Program to Make a Simple Calculator Using switch...case

    This program takes an arithmetic operator +, -, *, / and two operands from the user. Then, it performs the calculation on the two operands depending upon the operator entered by the user.

  3. Basic Calculator Program Using Java - GeeksforGeeks

    May 22, 2023 · Create a simple calculator which can perform basic arithmetic operations like addition, subtraction, multiplication, or division depending upon the user input. Example: Enter the numbers: 2 2 Enter the operator (+,-,*,/) + The final result: 2.0 + 2.0 = 4.0

  4. C Program to Create Simple Calculator - Tutorial Gateway

    How to write a C Program to Create a Simple Calculator using Switch case, Functions, and Else If Statement. This calculator program helps the user to enter the Operator (+, -, *, or /) and two values. Using those two values and operand, it will perform Arithmetic Operations.

  5. C Program to Implement Simple Calculator using Do While Loop

    Dec 21, 2022 · C Program to Implement Simple Calculator using Do While Loop by codecrucks · Published 21/12/2022 · Updated 21/03/2023 List of C Programs

  6. C program to create calculator using switch case and functions

    Jun 26, 2015 · Write a C program to create menu driven calculator that performs basic arithmetic operations (add, subtract, multiply and divide) using switch case and functions. The calculator should input two numbers and an operator from user.

  7. Calculator Program in C Language

    Dec 23, 2022 · In this article, we will explore the process of creating a calculator program in the C programming language. We will take you through the step-by-step development of a calculator that can perform basic arithmetic operations, including …

  8. Java Program Using Applet to Implement a Arithmetic Calculator

    Feb 8, 2023 · Write a Java Program Using Applet to Implement a Simple Arithmetic Calculator. We are going to write a java calculator program using AWT (Abstract Window Toolkit) and applet.

  9. C Program to Create Simple Calculator Using Switch Case - Java …

    A calculator performs basic arithmetic operations like addition, subtraction, multiplication, and division. In this post, we'll develop a simple calculator in C using the switch case statement to handle different arithmetic operations.

  10. Python Program to Make a Simple Calculator

    In this example you will learn to create a simple calculator that can add, subtract, multiply or divide depending upon the input from the user.

Refresh