Biker's Trip Odometer

输入:
 * 直径(英寸) 圈数    时间(s)
 * 输出:
 * trip #n: 距离(英里) 速度(英里/时)
 * 所有结果 保留两位小数


这道题  不知道是哪里出错了  一直提示 -----  Wrong Answer ;

找了好久没找到原因,我测试的时候 满足需求;这是我的代码

public class PracticeI {
public static void main(String[] args) {
Scanner sc= new Scanner(System.in);
DecimalFormat df = new DecimalFormat("#.00");
double da,s,ds,m;
int r,n=0;
while(sc.hasNext()){
n = n+1;
da = sc.nextDouble();
r = sc.nextInt();
if(r==0) break;
s = sc.nextDouble();
ds = (da * 3.1415927 * r)/5280/12;
s = s/3600;
m = ds / s;
System.out.println("Trip #"+n+": "+df.format(ds)+" "+df.format(m));
}
}
}

没找到原因,然后去网上搜了一下,也是用Java写的:

import java.io.BufferedInputStream;
import java.text.DecimalFormat;
import java.util.Scanner;
    public class Main {
    public static void main(String[] args) {
        Scanner cin = new Scanner(new BufferedInputStream(System.in));
        int index = 0;
        while(cin.hasNextLine())
        {
            String str = cin.nextLine();
            String temp[] = str.split(" ");
            if(temp[1].equals("0"))
                break;
            index++;
            float diameter = Float.parseFloat(temp[0]);
            int revolutions = Integer.parseInt(temp[1]);
            float time = Float.parseFloat(temp[2]);
            DecimalFormat df=(DecimalFormat) DecimalFormat.getInstance(); 
            df.applyPattern("0.00"); 
            float len = (float)(2* 3.1415927 * (diameter/2) * revolutions)/(12*5280);
            float v = len/(float)time*3600;
            System.out.println("Trip #"+index+": "+df.format(len)+" "+df.format(v));
        }
    }
}

对比了一下, 类型不是错误的原因, 输入和格式化的时候不同。。。




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值