java中给出两个数组int[] a和int[] b,算出a[0]和b[0]值为1的个数。 比如a[0]为1,b[0]也为1,就返回2
刚开始学java,菜鸟级。。。像大家求助。。。下面是我写的代码。因为有可能ab是空的数组,所以还要判断一下长度是否为0。麻烦帮我看一下问题到底出在哪里了。。。public...
刚开始学java,菜鸟级。。。像大家求助。。。下面是我写的代码。因为有可能ab是空的数组,所以还要判断一下长度是否为0 。麻烦帮我看一下问题到底出在哪里了。。。
public int start1(int[] a, int[] b) {
if (a.length==0&&b.length!=0){
if(b[0]==1){
return 1;}
else if(b[0]!=1){
return 0;}
}
else if (b.length==0&&a.length!=0){
if(a[0]==1){
return 1;}
else if(a[0]!=1){
return 0;}
}
else if (b.length==0&&a.length==0){
return 0;}
else if (a.length!=0&&b.length!=0){
if(a[0]==1&&b[0]==1){
return 2;}
else if(a[0]!=1&&b[0]==1){
return 1;}
else if(a[0]==1&&b[0]!=1){
return 1;}
else if(a[0]!=1&&b[0]!=1){
return 0;}
}
} 展开
public int start1(int[] a, int[] b) {
if (a.length==0&&b.length!=0){
if(b[0]==1){
return 1;}
else if(b[0]!=1){
return 0;}
}
else if (b.length==0&&a.length!=0){
if(a[0]==1){
return 1;}
else if(a[0]!=1){
return 0;}
}
else if (b.length==0&&a.length==0){
return 0;}
else if (a.length!=0&&b.length!=0){
if(a[0]==1&&b[0]==1){
return 2;}
else if(a[0]!=1&&b[0]==1){
return 1;}
else if(a[0]==1&&b[0]!=1){
return 1;}
else if(a[0]!=1&&b[0]!=1){
return 0;}
}
} 展开
展开全部
public int start1(int[]a,int[]b){
int count=0;
for(int i=0;i<a.length;i++){
if(a[i]==1){
count++;
}
}
for(int j=0;j<b.length;j++){
if(b[j]==1){
conut++;
}
}
return count;
}
这样试试,文本编辑的,不知道对不对。。。
祝你成功!
int count=0;
for(int i=0;i<a.length;i++){
if(a[i]==1){
count++;
}
}
for(int j=0;j<b.length;j++){
if(b[j]==1){
conut++;
}
}
return count;
}
这样试试,文本编辑的,不知道对不对。。。
祝你成功!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if(a[].length!=0||b[].length!=0){
if(a[0]==1&&b[0]==1){
return 2;
}else if(a[0]==1||b[0]==1){
return 1;
}else{
return 0;
}
}else{
return 0;
}
这样写就简单了。。
if(a[0]==1&&b[0]==1){
return 2;
}else if(a[0]==1||b[0]==1){
return 1;
}else{
return 0;
}
}else{
return 0;
}
这样写就简单了。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
很有问题。再自己看看
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public int start1(int[] a, int[] b) {
int count = 0;
if(a.length != 0 && a[0] == 1){
count++;
}
if(b.length != 0 && b[0] == 1){
count++;
}
return count;
}
int count = 0;
if(a.length != 0 && a[0] == 1){
count++;
}
if(b.length != 0 && b[0] == 1){
count++;
}
return count;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询