Question #282042

Newton's second law of motion


Expert's answer

#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;
    
}
LATEST TUTORIALS
APPROVED BY CLIENTS