1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
bixtya [17]
3 years ago
10

List all information for each order item. Include an item total, which can be calculated by multiplying the Quantity and Paid ea

ch columns. Use a column alias for the calculated value to show the heading "Item Total" in the output
Engineering
1 answer:
Zigmanuir [339]3 years ago
3 0

Answer:

#include<iostream>

Using namespace std;

int main()

{

int n, qty;

double price, amount;

cout<<"Number of items ";

cin>>n;

cout<<"ITEM<<"\t"<<"QUANTITY"<<"\t"<<"PRICE"<<"\t"<<"ITEM TOTAL";

for(int i= 1; I<= n; i++)

{

cin>>qty;

cin>>price;

amount = qty * price;

cout<<i<<"\t "<<qty<<"\t"<<price<<"\t"<<amount;

}

}

Explanation

The above program is written in C++ programming language

5 variables are declared and used in the program

n is declared as an integer to represent the total number of items

qty is declared as integer to represent the total quantity of each item

price is declared as double to represent the amount of each individual item

amount is declared as double to represent the total amount of an item; it is gotten by qty * price

i is declared as integer to iterated between each items

The amount of each item is calculated within the iteration and also printed immediately

You might be interested in
What is the following passage saying about the relationship between sustainability and responsibility?
7nadin3 [17]

What the given passage is saying about the relationship between sustainability and responsibility is that;

C: We should only consider products or services to be green if their broad impact can be considered so.

<h3>Sustainability</h3>

From the passage, we see a write up questioning if the things we term to be green are truly green.

Now, from the passage, we see that a biofuel that is considered to be green is not really green if we consider that if it requires massive overproduction, it could wreck the water table.

Also, he says that if the production is local but also wasteful then it is not green.

Thus, we can see clearly that before we term a product or service as green, we should also consider their broad impact on the environment.

Read more about sustainability at; brainly.com/question/14154063

7 0
2 years ago
What is the shape of the output signal on a rigexpert analyzer?
Gekata [30.6K]

Answer:

Output signal shape: square, from 0.1 to 230 MHz. Output power: -10 dBm (at a load of 50 Ohms).

Explanation:

8 0
2 years ago
Read 2 more answers
What is clearance? What is backlash? What is interference? Explain briefly.
Anton [14]

Explanation:

Clearance:

For easy matching  and dis matching  of  hole and  shaft we use size of hole little bit more than the size of shaft and this difference in size is called clearance.

Backlash:

  It is the clearance between the two mating gear to avoids failure of gears.Actually when temperature of gears increases then at the same time the size of gear also increases ,due this there is a possibility foe jamming of gears so to avoids this backlash is provides.

Interference:

  When two gears are matting then addendum of one gear inters into the deddendum of another gear and due to this gears get jam .This phenomenon is called interference.

5 0
3 years ago
(a) Differentiate between heat treatment of ferrous and non-ferrous alloys (b) With your understanding of material's thermal pro
liubo4ka [24]

Answer:

In ferrous metal iron present but on the other hand in the non ferrous material iron does not present.That is why there is a different heat treatment process for ferrous and nonferrous materials.

Ferrous materials contains iron is the main constitute.Like steel ,cast iron ,wrought iron .Steel and cast iron are  the alloy element of iron ans carbon.Wrought iron is the purest from of iron.

Heat treatment process for  ferrous materials :

1.Normalizing

2.Annealing

3.Quenching

4.Surface hardening

Heat treatment process for non ferrous materials :

Mostly annealing process is used for non ferrous materials.After annealing non ferrous will become soft.

When two metal plates are joined then they form a bimetallic structure.The bimetallic structure is used to find the relationship of thermal temperature and the mechanical displacement.

The use of bimetallic structure -In clock ,thermometers ,engines.

7 0
3 years ago
X-Ray Inspection
Softa [21]
The answer is the test is being tested towards the lungs the test is done by scanning your body the tools are called “the x rat visional lock space” and the rubber tool is called a deeldo it’s purple with a pencil looking shape perfect for the body.
5 0
3 years ago
Other questions:
  • Please help me with this question​
    8·1 answer
  • WHEN WAS THE FIRST CAR INVENTED?
    13·2 answers
  • g A 30-m-diameter sedimentation basin has an average water depth of 3.0 m. It is treating 0.3 m3/s wastewater flow. Compute over
    8·1 answer
  • read a file called filled in with a few sentences or a paragraph. Then write a function called typoglycemia, which scrambles the
    13·1 answer
  • A heat engine operates between a source at 477°C and a sink at 27°C. If heat is supplied to the heat engine at a steady rate of
    14·1 answer
  • When did michael faraday invent wind powered electrical generation?
    11·1 answer
  • Technician A says that to depressurize high-pressure components of the electronic brake control (EBC) system, research the proce
    13·1 answer
  • A) Consider an air standard otto cycle that has a heat addition of 2800 kJ/kg of air, a compression ratio of 8 and a pressure an
    7·1 answer
  • Based on the pattern, what are the next two terms of the sequence? 9,94,916,964,9256,... A. 91024,94096 B. 9260,91028 C. 9260,92
    5·1 answer
  • Question is written in following attached screenshot.
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!