acgo题库
  • 首页
  • 题库
  • 题单
  • 竞赛
  • 讨论
  • 排行
  • 团队
  • 备赛专区

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
登录
注册
题目详情题解(0)讨论(0)提交记录(0)
  • 题解

    userId_undefined

    法兰西玫瑰

    倔强青铜
    90阅读
    0回复
    1点赞
  • 题解

    #include<bits/stdc++.h> using namespace std; int main(){ double s,t1,t2,s1,pi=3.14; cin>>s>>t1>>t2; s1=s/t1t2; printf("%.2f",cbrt(s1/(4/3.0pi))); return 0; }

    userId_undefined

    一枚button

    倔强青铜
    89阅读
    0回复
    0点赞
  • 题解

    #include<bits/stdc++.h> using namespace std; double v,m,n; double sum=0,cnt=0; void add(); int main(){ cin>>v>>m>>n; add(); return 0; } void add(){ sum+=v/mn; cnt=sum/43/3.14; printf("%.2f",pow(cnt,1.0/3)); }

    userId_undefined

    轩至洛阳

    倔强青铜
    28阅读
    0回复
    1点赞
  • 函数运用 + 输入输出

    userId_undefined

    回来看看

    倔强青铜
    30阅读
    0回复
    0点赞
  • Aaaa.题解

    userId_undefined

    xerography

    倔强青铜
    12阅读
    0回复
    0点赞
  • Taikula

    userId_undefined

    JMZ詹总

    倔强青铜
    7阅读
    0回复
    0点赞
  • 题解

    #include <bits/stdc++.h> using namespace std; double s,t1,t2; int main() { cin>>s>>t1>>t2; double V_ball=s/t1t23/4/3.14; double r=pow(V_ball,1.0/3); cout<<fixed<<setprecision(2)<<r; return 0; }

    userId_undefined

    Voldemort

    倔强青铜
    7阅读
    0回复
    0点赞
  • tj

    userId_undefined

    有事找大号

    秩序白银
    4阅读
    0回复
    0点赞
  • 题解

    #include<iostream> #include<cmath> using namespace std; int main(){ double s,t1,t2,v,r; cin>>s>>t1>>t2; v=s/t1; r=v*t2/(4.0/3)/3.14; r=pow(r,1.0/3); printf("%.2lf",r); return 0; }

    userId_undefined

    我是新手

    倔强青铜
    2阅读
    0回复
    0点赞
  • 题解

    userId_undefined

    zsy

    秩序白银
    1阅读
    0回复
    0点赞
  • 题解

    userId_undefined

    LS_YZY

    倔强青铜
    0阅读
    0回复
    0点赞
首页