Newton's second law of motion
#include<bits/stdc++.h>
using namespace std;
int main()
{
int force, mass, velocity;
cout<<"Enter Mass of Object: ";
cin>>mass;
cout<<"Enter Velocity of Object: ";
cin>>velocity;
force = mass * velocity;
cout<<"Force required in newton is: "<<force;
}
Comments
Leave a comment