C program to make a simple calculator.

 

C program
C PROGRAM

C program to make a simple calculator


 #include <stdio.h>
#include<conio.h>
void main()
{
  float num1,num2,result;
  char op;
  clrscr();
  printf("\n type your expression(num1,num2) \n");
  scanf("%f%f",&num1,&num2);
  printf("\n enter the operator[+,-,*,/] \n");
  scanf("%s",&op);
  switch(op)
  {
    case '+':
      result=num1+num2;
      break;
      case '-':
        result=num1-num2;
        break;
        case '*':
          result=num1*num2;
          break;
          case '/':
            if(num2==0)
            {
              printf("\n division by zero is error");
              }
              else
              {
                result=num1/num2;
                }
                break;
                default:
                    printf("\n invalid operator");
                  }
                  printf("\n %2f%c%2f=%2f",num1,num2,op,result);
                  getch();
                  }

 

   OUTPUT:

type your expression(num1,num2) 
3
2

 enter the operator[+,-,*,/] 
+

 3.000000+2.000000=5.000000
Process finished.

No comments:

Post a Comment




Copyright Ⓒ 2022 | Mechpedia | All Right Reserved.