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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    #include<iostream> using namespace std; int main(){ double k,f,c; cin>>k; c=k-273.15; f=c*1.8+32; if(f>212){ cout<<"Temperature is too high!"; } else{ printf("%.2lf",c); cout<<" "; printf("%.2lf",f); } return 0; }

    userId_undefined

    LS_YZY

    时空双修者出道萌新模拟·模拟练习生快乐小狗倔强青铜题解仙人
    18阅读
    0回复
    0点赞
  • C语言

    userId_undefined

    无敌的鳖佬仔给老爷爷猜猜被

    时间刺客空间掌握者出道萌新I/O·IO入门者循环·循环打卡人荣耀黄金
    6阅读
    0回复
    0点赞
  • 123

    #include<iostream> #include<iomanip> using namespace std; int main(){ double k,c,f; cin>>k; c=k-273.15; f=c*1.8+32; if(f>212){ cout<<"Temperature is too high!"; } else{ cout<<fixed<<setprecision(2)<<c<<" "<<f; } return 0; }

    userId_undefined

    曹汇煦

    循环·循环打卡人
    4阅读
    0回复
    0点赞
首页