问题标题: 酷町堂:2049 飞一般的速度

2
0
已解决
王子健
王子健
初级天翼
初级天翼
#include<iostream>
#include<cmath>
#include<cstdio>
using namespace std;
int main()
{
    double t,s;
    cin>>t>>s;
    double a;
    a=s/t;
    printf("%.1f",a);
    return 0;
}

 


1
已采纳
时梓繁
时梓繁
修练者
修练者

double a,s;
    double x;
    cin>>a>>s;
    x=s/a;
    x=int(x*10.0+0.5)/10.0;
    printf("%.1f",x);

0
0
周建勋
周建勋
中级光能
中级光能
核心:   
  浮点型定义 a,s;
    浮点型定义 x;
    输入>>a>>s;
    x=s/a;
    x=int(x*10.0+0.5)/10.0;
    printf输出("%.1f",x);

保证AC

望采纳,666!!!

头文件:

#include<iostream>
#include<cstdio>

我要回答