我有好几个关于JAVA编程的基础题目,不会做..求助

1找出一个二维数的鞍点2编程实现一个用户登录窗口,其中用户名要求为10位的数字,且第一个数字不能为0.... 1 找出一个二维数的鞍点
2 编程实现一个用户登录窗口,其中用户名要求为10位的数字,且第一个数字不能为0.
展开
 我来答
flyingFish211
2011-05-23 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
第一个:
public class First {

public static void main(String[] args) {

int[][] nums = {{13, 900, 4}, {24, 36, 129}, {3, 5, 8}, {99, 127, 745}};

for(int i = 0; i < nums.length; i++){

//Find row max index
int index = getMaxIndexOfRow(nums[i]);
int baseItem = nums[i][index];
boolean isMax = true;
for(int j = 0; j < nums.length; j++){
if(nums[j][index] > baseItem){
isMax = false;
}
}

if(isMax){
System.out.println("鞍点: " + i + "," + index + "= " + nums[i][index]);
}
}

}

private static int getMaxIndexOfRow(int[] row) {
int index = 0;

for(int i = 0; i < row.length; i++){
if(row[i] > row[index]){
index = i;
}
}
return index;
}
}

-----------------------
鞍点:0,1= 900
鞍点:3,2= 745

第二个:

import javax.swing.JOptionPane;

public class Second {

public static void main(String[] args) {

String input = JOptionPane.showInputDialog("Please input your username: ").trim();

if(!input.matches("[1-9]\\d{9}")){
System.out.println("Password can only be 10 digits and can't start with 0");
}
}
}
-----------input 023423s
Password can only be 10 digits and can't start with 0
来自:求助得到的回答
ste_whut
2011-05-15
知道答主
回答量:16
采纳率:0%
帮助的人:19.6万
展开全部
楼主可以把题目敲上来看一下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友f9c1619
2011-05-15 · TA获得超过122个赞
知道答主
回答量:89
采纳率:0%
帮助的人:68.4万
展开全部
你说说题哈?不说什么题目我们怎么知道 你不会做呢?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
郗藏r
2011-05-15 · TA获得超过1599个赞
知道小有建树答主
回答量:1217
采纳率:0%
帮助的人:716万
展开全部
恩 确实很难我都看不到问题
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式