UVa 10071 Back to High School Physics —— UVa练习第二弹

UVa 10071 同一个题库里面的第2道。。。。

表示想多了,如果想少一些早就能写出来。。不过还是1次AC了。

还有我虽然用了long,实际上显然int也行。

附AC代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import java.util.*; 
//UVa 10071
public class Main {

public static void main(String[] args) {
Scanner cin = new Scanner(System.in);
long v,t,result;
while(cin.hasNext()){
v=cin.nextLong();
t=cin.nextLong();
result=2*v*t;
System.out.println(result);
}
}
}