Advertisements
Advertisements
प्रश्न
The formula E = mc2 states that the equivalent energy (E) can be calculated as the mass (m) multiplied by the speed of light (c = about 3 × 108 m/s) squared. Write a program that accepts the mass of an object and determines its energy.
संक्षेप में उत्तर
Advertisements
उत्तर
The formula is given as:
E = mc2
where E ⇒ energy measured in Joule,
m ⇒ mass in Kilogram,
c ⇒ speed of light in m/s.
Program:
#Program to calculate the equivalent energy of an object
#asking for the mass in grams
mass = float(input("Enter the mass of object(in grams): "))
#Speed of light is known and given in the question
c = 3 * 10 ** 8
#calculating the energy, mass is divided by 1000 to convert it into a kilogram
Energy = (mass/1000) * c ** 2
#printing the output
print("The energy of an object with mass", mass," grams is", Energy,"Joule.")
OUTPUT:
Enter the mass of object(in grams): 25
The energy of an object with a mass of 25.0 grams is 2250000000000000.0 Joule.shaalaa.com
Operators - Arithmetic Operators (-,+,*,/,%)
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
