Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I am not sure what is wrong with my code! when I run the code, the output should be the answer to the operation I

I am not sure what is wrong with my code!

when I run the code, the output should be the answer to the operation I chose, and then the operations menu should show again asking me to choose an operation and it stops.

But in my case, the operation menu shows again, then it shows "Invalid option! Choose the correct operation", is there anything I missed?

#include

int main() { int first,second; char option;

do { printf (" Choose the operation: "); printf ("+ Addition - Substraction * Multiplication / Division ! Factorial 0 Exit "); scanf ("%c", &option); if (option=='0') { break; }

switch (option) { case '+': printf ("Enter the first Integer: "); scanf ("%d", &first); printf ("Enter the second Integer: "); scanf ("%d", &second); printf ("Answer is: %d ", first+second); break;

case '-': printf ("Enter the first Integer: "); scanf ("%d", &first); printf ("Enter the second Integer: "); scanf ("%d", &second); printf ("Answer is: %d ", first-second); break;

case '*': printf ("Enter the first Integer: "); scanf ("%d", &first); printf ("Enter the second Integer: "); scanf ("%d", &second); printf ("Answer is: %d ", first*second); break;

case '/': printf ("Enter the first Integer: "); scanf ("%d", &first); printf ("Enter the second Integer: "); scanf ("%d", &second); if (second==0) { printf("Error! "); } else { printf ("Answer is: %d ", first/second); } break;

case '!': printf ("Enter the first Integer: "); scanf ("%d",&first); printf ("The Factorial of %d is: %d ", first, first*second); break; case '0': break;

default: printf ("Invalid option! Choose the correct operation "); break; } }

while (option!='0'); }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2014 Nancy France September 15 19 2014 Proceedings Part I Lnai 8724

Authors: Toon Calders ,Floriana Esposito ,Eyke Hullermeier ,Rosa Meo

2014th Edition

3662448475, 978-3662448472

More Books

Students also viewed these Databases questions

Question

4. What sales experience have you had?

Answered: 1 week ago