Answer:
Ususushehehehhuuiiïbbb
Explanation:
Yyshehshehshshsheyysysueueue
Answer:
True ❤️
-Solid by solid can make Cylindrical wire doubles Strengths in tension
Answer:
7.07%
Explanation:
Thermal efficiency can be by definition seen as the ratio of the heat utilized by a heat engine to the total heat units in the fuel consumed.
We will determine the thermal efficiency of the given problem at the attached file.
Answer:
my opinion would be electric
Explanation:
because when it comes down to the bare minimum the best choice for the world in the long run would be electric because it puts a big dent back for global warming and the burning of gasses so the more people who drive electric cars are the people who are trying to save the world a little at a time by preventing the burning of gasses. hope this helps :)
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