03. Write a menu driven program
following
1.) S=0*3***15*24therm
| | | --
Answers
Answer:
Sample Solution:
C Code:
#include <stdio.h>
void main() {
int num1,num2,opt;
printf("Enter the first Integer :");
scanf("%d",&num1);
printf("Enter the second Integer :");
scanf("%d",&num2);
printf("\nInput your option :\n");
printf("1-Addition.\n2-Substraction.\n3-Multiplication.\n4-Division.\n5-Exit.\n");
scanf("%d",&opt);
switch(opt) {
case 1:
printf("The Addition of %d and %d is: %d\n",num1,num2,num1+num2);
break;
case 2:
printf("The Substraction of %d and %d is: %d\n",num1,num2,num1-num2);
break;
case 3:
printf("The Multiplication of %d and %d is: %d\n",num1,num2,num1*num2);
break;
case 4:
if(num2==0) {
printf("The second integer is zero. Devide by zero.\n");
} else {
printf("The Division of %d and %d is : %d\n",num1,num2,num1/num2);
}
break;
case 5:
break;
default:
printf("Input correct option\n");
break;
}
}
Copy
Sample Output:
Enter the first Integer :10
Enter the second Integer :2
Input your option :
1-Addition.
2-Substraction.
3-Multiplication.
4-Division.
5-Exit.
3
The Multiplication of 10 and 2 is: 20
Flowchart:
Flowchart: A menu driven program for a simple calculator
C Programming Code Editor:
Improve this sample solution and post your code through Disqus.
Previous: Write a program in C which is a Menu-Driven Program to compute the area of the various geometrical shape.
Next: C For Loop Exercises Home
What is the difficulty level of this exercise?
EASY MEDIUM HARD
Based on 161 votes, average difficulty level of this exercise is Easy .
New Content published on w3resource :
Python Numpy exercises
Python GeoPy Package exercises
Python Pandas exercises
Python nltk exercises
Python BeautifulSoup exercises
Form Template
Composer - PHP Package Manager
PHPUnit - PHP Testing
Laravel - PHP Framework
Angular - JavaScript Framework
React - JavaScript Library
Vue - JavaScript Framework
Jest - JavaScript Testing Framework
Explanation:
I hope it's help you
please mark as brainliest
And give 100 likes