Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- float fMass = 1000.00,
- fGMoob = 9.81,//1.61,
- fV = 0.00;
- float Vchange(float t);
- ////////////////////////////////////////////////////
- int main() //
- {
- Vchange(6.00);
- printf("V result = %.2f", fV);
- }
- ///////////////////////////////////////////
- float Vchange(float t)
- {
- fV = fV - (fGMoob * t);
- return fV;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement