用C语言求位移 20

已知自由落体的公式为:s=1/2gt2+v0t,其中v0为出事速度,g为重力加速度,t为经历的时间。用C++语言求位移。要完整步骤!!谢谢谢谢!!!... 已知自由落体的公式为:s=1/2gt2+v0t,其中v0为出事速度,g为重力加速度,t为经历的时间。

用C++语言求位移。 要完整步骤 !! 谢谢

谢谢!!!
展开
 我来答
Yayana_
2010-03-30 · TA获得超过954个赞
知道小有建树答主
回答量:191
采纳率:0%
帮助的人:161万
展开全部
#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);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
376257294
2010-03-30 · 超过28用户采纳过TA的回答
知道答主
回答量:100
采纳率:100%
帮助的人:68.4万
展开全部
这是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;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
L_o_o_n_i_e
2010-03-30 · TA获得超过4.2万个赞
知道大有可为答主
回答量:8507
采纳率:38%
帮助的人:5245万
展开全部
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);
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式