Showing posts with label or. Show all posts
Showing posts with label or. Show all posts

Monday, 31 March 2014

C program | To Make a Simple Calculator to Add, Subtract, Multiply or Divide Using switch.....case

C program | To Make a Simple Calculator to Add, Subtract, Multiply or Divide Using switch.....case

Source code :-)

/* C programming-Source code to create a simple calculator for addition, subtraction, multiplication and division using switch...case statement */

# include <stdio.h>
int main()
{
    char o;
    float num1,num2;
    printf("Enter operator either + or - or * or divide : ");
    scanf("%c",&o);
    printf("Enter two operands: ");
    scanf("%f%f",&num1,&num2);
    switch(o) {
        case '+':
            printf("%.1f + %.1f = %.1f",num1, num2, num1+num2);
            break;
        case '-':
            printf("%.1f - %.1f = %.1f",num1, num2, num1-num2);
            break;
        case '*':
            printf("%.1f * %.1f = %.1f",num1, num2, num1*num2);
            break;
        case '/':
            printf("%.1f / %.1f = %.1f",num1, num2, num1/num2);
            break;
        default:
            /* If operator is other than +, -, * or /, error message is shown */
            printf("Error! operator is not correct");
            break;
    }
    return 0;


Output:-)

Enter operator either + or - or * or divide : -
Enter two operands: 3.4
8.4
3.4 - 8.4 = -5.0

C Program | Find odd or even using conditional operator

 C Program-Find odd or even using conditional operator


Source Code :-)


#include<stdio.h>

main()
{
   int n;

   printf("Input an integer\n");
   scanf("%d",&n);

   n%2 == 0 ? printf("Even\n") : printf("Odd\n");

   return 0;
}

C program to check odd or even number-Source code

C program to check odd or even number-Source code

Source Code:-)


#include<stdio.h>

main()
{
   int n;

   printf("Enter an integer\n");
   scanf("%d",&n);

   if ( n%2 == 0 )
      printf("Even\n");
   else
      printf("Odd\n");

   return 0;
}