解题思路: bu zhi dao ru he jie shi
注意事项:
参考代码:
public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(sc.hasNext()) { int num = 0; int n = sc.nextInt(); int m = sc.nextInt(); int record =n%m;//记录不足的m的位置 for (int i = 1; i <= n; i++) { if (n-i >= record) { if (i%m!=0) { num += average(i); }else if(i%m==0){ num += average(i); if (n-i!=record) { System.out.print((num/m)+" "); }else { System.out.print((num/m)+"\n"); } num=0; } }else { num+=average(i); if (i==n) { record = n%m==0?1:n%m; System.out.print(num/record+"\n"); } } } } } public static int average(int n) { if (n==1) { return 2; } return 2+average(n-1); }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:553 |
【亲和数】 (C语言代码)浏览:908 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:609 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:701 |
DNA (C语言代码)浏览:564 |
1011题解浏览:819 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:585 |
A+B for Input-Output Practice (III) (C语言代码)浏览:594 |
Tom数 (C语言代码)浏览:758 |
蛇行矩阵 (C语言代码)浏览:559 |