Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include "Equations.h"
  2. #include <iostream>
  3. using std::cout;
  4.  
  5. int main()
  6. {
  7.     //vi = 0 d = 250 a = 7 vf = ?
  8.    
  9.     Var vi(0,true);
  10.     Var d(250,true);
  11.     Var a(7,true);
  12.     Var vf(0,false);
  13.    
  14.     VfSquared(vf,vi,a,d);
  15.        
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement