Kinetic Energy
It gives you the numerical value of kinetic energy. This thing is related to physics.
AI
AI Summary: 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.
Source Code
//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;
}
Original Comments (3)
Recovered from Wayback Machine