Answer to Question #282042 in C++ for Feizii

Question #282042

Newton's second law of motion


1
Expert's answer
2021-12-22T08:07:22-0500
#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;
    
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog