用C语言求位移 20
已知自由落体的公式为:s=1/2gt2+v0t,其中v0为出事速度,g为重力加速度,t为经历的时间。用C++语言求位移。要完整步骤!!谢谢谢谢!!!...
已知自由落体的公式为:s=1/2gt2+v0t,其中v0为出事速度,g为重力加速度,t为经历的时间。
用C++语言求位移。 要完整步骤 !! 谢谢
谢谢!!! 展开
用C++语言求位移。 要完整步骤 !! 谢谢
谢谢!!! 展开
3个回答
展开全部
#include<stdio.h>
#include<math.h>
void main()
{
int v0,g=10,t;
int s;
printf("请输入初速度和时间(用空格隔开):\n");
scanf("%d %d",&v0,&t);
s=v0*t+g*t*t/2;
printf("位移为%d\n",s);
}
#include<math.h>
void main()
{
int v0,g=10,t;
int s;
printf("请输入初速度和时间(用空格隔开):\n");
scanf("%d %d",&v0,&t);
s=v0*t+g*t*t/2;
printf("位移为%d\n",s);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这是c语言的:
#include <stdio.h>
main()
{
float t=0,v0=0,g=9.8,s;
printf("please input V0 and T:");
scanf("%f %f",&v0,&t);
s=1.0/2*g*t*t+v0*t;
printf("%.3f\n",s);
}
这是c++的:
#include <iostream>
using namespace std;
void main()
{
float t=0,v0=0,g=9.8,s;
cout<<"please input V0 and T:";
cin>>v0>>t;
s=1.0/2*g*t*t+v0*t;
cout<<"s="<<s<<endl;
}
#include <stdio.h>
main()
{
float t=0,v0=0,g=9.8,s;
printf("please input V0 and T:");
scanf("%f %f",&v0,&t);
s=1.0/2*g*t*t+v0*t;
printf("%.3f\n",s);
}
这是c++的:
#include <iostream>
using namespace std;
void main()
{
float t=0,v0=0,g=9.8,s;
cout<<"please input V0 and T:";
cin>>v0>>t;
s=1.0/2*g*t*t+v0*t;
cout<<"s="<<s<<endl;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
C:
#include <stdio.h>
#include <stdlib.h>
void main(void)
{
float g=9.80616;
float s,t,v0;
printf("input initial velocity v0 in m/s:\n");
scanf("%f",&v0);
printf("input duration t in seconds:\n");
scanf("%f",&t);
s = 0.5 * g * t * t + v0 * t;
printf("%f",s);
exit(0);
}
-----------------------------------
C++
#include<iostream>
using namespace std;
void main()
{
float g=9.80616;
float s,t,v0;
cout << "input initial velocity v0 in m/s:" << endl;
cin >> v0;
cout << "input duration t in seconds:" << endl;
cin>>t;
s = 0.5 * g * t * t + v0 * t;
cout << s;
exit(0);
}
#include <stdio.h>
#include <stdlib.h>
void main(void)
{
float g=9.80616;
float s,t,v0;
printf("input initial velocity v0 in m/s:\n");
scanf("%f",&v0);
printf("input duration t in seconds:\n");
scanf("%f",&t);
s = 0.5 * g * t * t + v0 * t;
printf("%f",s);
exit(0);
}
-----------------------------------
C++
#include<iostream>
using namespace std;
void main()
{
float g=9.80616;
float s,t,v0;
cout << "input initial velocity v0 in m/s:" << endl;
cin >> v0;
cout << "input duration t in seconds:" << endl;
cin>>t;
s = 0.5 * g * t * t + v0 * t;
cout << s;
exit(0);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询