参考代码:
public void distance1() { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { int x = sc.nextInt(); int y = sc.nextInt(); double res = Math.abs(3*x-y+4)*1.0/Math.sqrt(3*3+1); System.out.printf("%.6f\n",res); //打印也可以写成这样System.out.println(String.format("%.6f", d)); } } public void distance2() { /* * 静态导入:Java5的新特性,导入的是类里面的静态成员 * import static java.lang.Math类:具体参见API */ Scanner sc = new Scanner(System.in); while (sc.hasNext()) { int x = sc.nextInt(); int y = sc.nextInt(); double res = abs(3*x-y+4)*1.0/sqrt(3*3+1); System.out.printf("%.6f\n",res); //打印也可以写成这样System.out.println(String.format("%.6f", d)); } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:545 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:702 |
字符串的输入输出处理 (C语言代码)浏览:1021 |
WU-格式化数据输出 (C语言代码)浏览:1818 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:597 |
Cylinder (C语言描述,蓝桥杯)浏览:1279 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:416 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:569 |
青年歌手大奖赛_评委会打分 (C语言代码)浏览:2248 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:604 |