Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that evaluates an expression in C: Example: Enter an expression: 1+2.5*3 Value of expression: 10.5 The operands in the expression are floating-point

Write a program that evaluates an expression in C:

Example: Enter an expression: 1+2.5*3 Value of expression: 10.5

The operands in the expression are floating-point numbers; the operators are +, -, *, and /. The expression is evaluated from left to right (no operator takes precedence over any other operator).

My attempt:

#include

int main(void) { char ch; float n, value; printf("Enter an expression: "); scanf("%f%c%f", &value, &ch); while (ch == '+' || '-' || '*' || '/') { scanf("%f", &n); if (ch == '+'){ value += n; } if (ch == '-'){ value -= n; } if (ch == '*'){ value *= n; } if (ch == '/'){ value /= n; } scanf("%c", &ch); } printf("Value of expression: %f", value); return 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

Spatial Database Systems Design Implementation And Project Management

Authors: Albert K.W. Yeung, G. Brent Hall

1st Edition

1402053932, 978-1402053931

More Books

Students also viewed these Databases questions

Question

How does the "invisible hand" work in a competitive market system?

Answered: 1 week ago