Objectives · Familiarize with the concept of numbers, operators, and arithmetic operations; · Able to perform basic calculations. Scenario Take a look at the code in the editor: it reads a float value, puts it into a variable named x, and prints the value of a variable named y. Your task is to complete the code in order to evaluate the following expression: 3x - 2x? + 3x - 1

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter3: Assignment, Formatting, And Interactive Input
Section3.1: Assignment Operations
Problem 7E: (Civil eng.) Write an assignment statement to calculate the linear expansion in a steel beam as a...
icon
Related questions
Question
Objectives
· Familiarize with the concept of numbers, operators, and
arithmetic operations;
· Able to perform basic calculations.
Scenario
Take a look at the code in the editor. it reads a float value, puts
it into a variable named x, and prints the value of a variable
named y. Your task is to complete the code in order to evaluate
the following expression:
Зx - 2х2 + 3х - 1
The result should be assigned to y.
Remember that classical algebraic notation likes to omit the
multiplication operator - you need to use it explicitly. Note
how we change data type to make sure that x is of type float.
Keep your code clean and readable, and test it using the data
we've provided, each time assigning it to the x variable (by
hardcoding it). Don't be discouraged by any initial failures. Be
persistent and inquisitive.
Transcribed Image Text:Objectives · Familiarize with the concept of numbers, operators, and arithmetic operations; · Able to perform basic calculations. Scenario Take a look at the code in the editor. it reads a float value, puts it into a variable named x, and prints the value of a variable named y. Your task is to complete the code in order to evaluate the following expression: Зx - 2х2 + 3х - 1 The result should be assigned to y. Remember that classical algebraic notation likes to omit the multiplication operator - you need to use it explicitly. Note how we change data type to make sure that x is of type float. Keep your code clean and readable, and test it using the data we've provided, each time assigning it to the x variable (by hardcoding it). Don't be discouraged by any initial failures. Be persistent and inquisitive.
< >
main.py 0
1 x = # hardcode your test data here
x = float(x)
# write your code here
4 print("y =", y)
2
3
II
Transcribed Image Text:< > main.py 0 1 x = # hardcode your test data here x = float(x) # write your code here 4 print("y =", y) 2 3 II
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Block Comments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage