码迷,mamicode.com
首页 > 其他好文 > 详细

首师大附中科创教育平台 我的刷题记录(5)

时间:2016-09-04 17:28:33      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

首师大附中科创教育平台我的刷题记录(给大家刷21--25题吧)

仅供同学们参考,禁止抄袭!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

技术分享
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
    double a,b,x;
    cin>>a>>b;
    x=-b/a;
    cout<<x<<endl;
    return 0;
}
一元一次方程
技术分享
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
    double R1,R2,A;
    cin>>R1>>R2;
    A=R1*R2/(R1+R2);
    cout<<A<<endl;
    return 0;
}
并联电阻
技术分享
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
    double A,B,C,x;
    cin>>A>>B>>C;
    x=A+B-C;
    cout<<x<<endl;
    return 0;
}
特殊的方程
技术分享
#include<iostream>
using namespace std;
int main()
{
    double R,m1,m2;    
    cin>>m1;
    cin>>m2;
    cin>>R;    
    cout<<(6.674e-11*m1*m2)/(R*R);
}
万有引力定律
技术分享
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
    double v1,v2,a,b;
    cin>>v1>>v2;
    a=v1*v1+v2*v2;
    b=a/2;
    cout<<sqrt(b)<<endl;
    return 0;
}
中点位移的速度

 

首师大附中科创教育平台 我的刷题记录(5)

标签:

原文地址:http://www.cnblogs.com/mayitao/p/5839570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!