解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
private static int n;
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
n=scanner.nextInt();
int[] a=new int[n];
int[] b=new int[n];
int count=0;
for(int i=0;i<n;i++) {
a[i]=scanner.nextInt();
}
while(pd(a)==0) {
for(int i=0;i<n;i++) {
b[i]=a[i]/2;
}
a[0]=b[0]+b[n-1];
if(a[0]%2!=0) {
a[0]++;
count++;
}
for(int i=1;i<n;i++) {
a[i]=b[i]+b[i-1];
if(a[i]%2!=0) {
a[i]++;
count++;
}
}
}
System.out.println(count);
}
private static int pd(int[] a) {
// TODO Auto-generated method stub
int i;
for(i=1;i<n;i++)
if(a[i]!=a[0])
break;
if(i==n)
return 1;
else
return 0;
}
}
0.0分
0 人评分
C二级辅导-阶乘数列 (C语言代码)浏览:736 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:552 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1264 |
WU-链表数据求和操作 (C++代码)浏览:1385 |
【魔板】 (C++代码)(时间超限,希望会的帮我改正一下)浏览:804 |
C语言训练-亲密数 (C语言代码)浏览:697 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:913 |
A+B for Input-Output Practice (C语言代码)浏览:506 |
循环入门练习6 (C语言代码)浏览:1059 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:756 |