解题思路:
注意事项:
参考代码:
package Year_2017;
import java.util.Scanner;
public class 观光铁路 {
private static int n,m;
private static int [] arr ;
private static int [] degree ;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
m =sc.nextInt();
degree = new int [n];
arr = new int [n];
for(int i=0;i<m;i++) {
//记录各个城市的满意度
degree[sc.nextInt() - 1] ++;
degree[sc.nextInt() - 1] ++;
}
sc.close();
double totalDegree = 0;
for(int i=0;i<n;i++) {
totalDegree+=degree[i];
}
//===================================================================================
for(int i=0;i<n;i++) {
System.out.println(String.format("%.12f", totalDegree/degree[i]));
}
}
}
0.0分
1 人评分
哥德巴赫曾猜测 (C语言代码)浏览:2562 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:455 |
C语言程序设计教程(第三版)课后习题8.1 (C++代码)浏览:612 |
核桃的数量 (C语言代码)浏览:874 |
母牛的故事 (C语言代码)浏览:547 |
计算质因子 (Java代码)浏览:789 |
Manchester-数字整除最原始易理解方法浏览:4635 |
Manchester-字符逆序(稳,附带小问题)浏览:5076 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:670 |
多输入输出练习1 (C语言代码)浏览:1470 |