Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program Starts here
#include<iostream>
using namespace std;
int main ()
{
// Declare Variables
int quarter, dimes, nickel, cent;
// Enter values for each
cout<<"Quarter: ";
cin>>quarter;
cout<<"Dimes: ";
cin>>dimes;
cout<<"Nickels: ";
cin>>nickel;
/*
In the United States, these coins have the following values
Quarter = 25 cents
Done = 10 cents
Nickel = 5 cent
Total cent is calculated below
*/
cent = 25 * quarter + 10 * dimes + 5 * nickel;
// Print Total
cout<<"The coins are worth "<<cent<<" cents";
return 0;
}
Answer:
energy that's waiting to happen
Explanation:
as an example if you throw a ball up in the air potential energy is going to happen when it comes down that's going to be energy basically I don't know if you get it but it's called potential energy
Answer:
<h2>7142.86 moles</h2>
Explanation:
To find the number of moles in a substance given it's number of entities we use the formula

where n is the number of moles
N is the number of entities
L is the Avogadro's constant which is
6.02 × 10²³ entities
From the question we have

We have the final answer as
<h3>7142.86 moles</h3>
Hope this helps you