Advertisement
Java_Volume1 Math #100904

Kinetic Energy

It gives you the numerical value of kinetic energy. This thing is related to physics.

AI

Ringkasan AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Kode Sumber
original-source
//Kinetic energy 
#include<iostream.h>
int main()
{
 float m,v,sv,KE;
 cout<<"Enter the value of mass ";
 cin>>m;
 cout<<"Enter the value of velocity ";
 cin>>v;
 sv=v*v;
 KE=0.5*m*sv;
cout<<"The kinetic energy is "<<KE<<"\n";
 return 0;
}
Komentar Asli (3)
Dipulihkan dari Wayback Machine