0
10kviews
Write a menu driven program to perform addition/subtraction/division/modulus based on user choice

Subject : Structured Programming Approach

Title : Control Structures

Marks : 10M

1 Answer
1
1.3kviews
#include<stdio.h>
#include<conio.h>
void main()
{
int no1,no2,result;
char choice;
clrscr();
printf("Enter the numbers:");
scanf("%d %d",&no1,&no2);
printf("+.Add\n-.Subtract\n*.Multiply\n/.Divide\n%.Modulus\nEnter your choice:");
choice=getche();
printf("\n");
switch(choice)
{
    case '+':result=no1+no2;
    printf("Sum= %d",result);
    break;
    case '-':result=no1-no2;
    printf("Difference= %d",result);
    break;
    case '*':result=no1*no2;
    printf("Product= %d",result);
    break;
    case '/':result=no1/no2;
    printf("Quotient= %d",result);
    break;
    case '%':result=no1%no2;
    printf("Remainder= %d",result);
    break;
    default:printf("Invalid choice");
}
getch();
}
Please log in to add an answer.