我有好几个关于JAVA编程的基础题目,不会做..求助
1找出一个二维数的鞍点2编程实现一个用户登录窗口,其中用户名要求为10位的数字,且第一个数字不能为0....
1 找出一个二维数的鞍点
2 编程实现一个用户登录窗口,其中用户名要求为10位的数字,且第一个数字不能为0. 展开
2 编程实现一个用户登录窗口,其中用户名要求为10位的数字,且第一个数字不能为0. 展开
4个回答
展开全部
第一个:
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
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
来自:求助得到的回答
展开全部
楼主可以把题目敲上来看一下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你说说题哈?不说什么题目我们怎么知道 你不会做呢?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
恩 确实很难我都看不到问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询