请高手帮忙改个错,急!!!!
是一道关于牛顿第二定律的一道题,让输入位移和时间,算出加速度和功,已知量是初速度为零,质量为1500.麻烦懂的帮忙看看,我是算不出来正确答案。输入之后出来的是很长的一串数字。
谢谢了!!
#include <stdio.h>
main(void)
{
int V=0,m=1500,S,t, a,F;
S = V*t+1/2*a*t^2;
F = m*a;
printf("\nPlease enter your displacement:");
scanf("%f",&S);
printf("\nPlease enter your time:");
scanf("%f",&t);
printf("\nYour acalearation is %d",a);
printf("\nYour traction of engine is %d",F);
}